PDA

View Full Version : C# for beguiner(s)


geovani
01-22-2009, 11:03 AM
Hello,

What source would you recomend for an introduction to C#?

thanks

-geo-

NinjaTrader_Josh
01-22-2009, 11:13 AM
geovani,

I cannot make any specific recommendations. I suggest you try googling some resources or pick up a book from the library. There are many good ones out there.

mrlogik
01-22-2009, 12:26 PM
geovani,

check out this link (http://www.uow.edu.au/%7Enabg/ABC/ABC.html)for pdf format of a c# for beginners book.

geovani
01-22-2009, 02:14 PM
geovani,

check out this link (http://www.uow.edu.au/%7Enabg/ABC/ABC.html)for pdf format of a c# for beginners book.

Thanks mrlogik. Actually it is an intro to C++. Are C# and C++ so very similar?

rgds

-geo-

mrlogik
01-22-2009, 04:03 PM
I didn't even realize.

Programming in general between them is similar, but there's a major difference in syntax.

Just google c# beginners guide and you should find plenty of info.

good luck

ctrlbrk
01-22-2009, 05:11 PM
Amazon: C# for dummies
http://www.amazon.com/C-2008-Dummies-Computer-Tech/dp/0470191090/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1232669444&sr=8-1

geovani
01-23-2009, 05:33 AM
Amazon: C# for dummies
http://www.amazon.com/C-2008-Dummies-Computer-Tech/dp/0470191090/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1232669444&sr=8-1

Tx ct.... In fact I downloaded this very same book yesterday. IŽll start reading it soon.

suedeuno
01-23-2009, 09:40 AM
You'll also have to find out from NT what version of .Net c# is currently used. I've noticed that NT software doesn't support generics yet. Meaning, not all that you read in the C# book may be available in NT yet.

NinjaTrader_Josh
01-23-2009, 09:53 AM
NT is on .NET 2.0. If you want generics you need to add the include.

mrlogik
01-23-2009, 10:33 AM
NT supports generics.

you have to add a using statement for

System.Collections.Generics or something of that sort.