Where to learn advanced topics of c#?

chuawenching

Well-known member
Joined
Jul 26, 2003
Messages
66
Hi there.

Can i know where to learn advanced topics of c# like multi threading, property, events, data structures (stacks, linked list), etc?

There are too many in the google. Any good ones which i can rely on?

I want to get the right concepts...

Any help?

Thanks.

Regards,
Chua Wen Ching :p
 
Look in your MSDN library. Every aspect of the framework is covered in there. Once you get a basic feel for the concept of what it is youre doing, you can experiment with it in a program, which is what I usually do.

Also, if you search on Google and get too many results, try limiting your search a bit. For example, if you search for

".NET" AND "Multithreading"

It may come up with all pages that are www.whatever.net, and contain the word Multithreading -- however, if you search for

"C#" AND ".NET" AND "Multithreading"

chances are, youll get more .NET related pages.

There are books on advanced topics such as the ones you listed as well, so I suggest you take a look at your local bookstore, or at amazon.com, or something.
 
Back
Top