How to get to the top of C#? [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 13 years ago.
How can I become an expert in C# and any language I learn?
Also, what are some recommended books....?

Is really easy. Learn all features of the language, then study the framework and read when to apply each feature.

A great place to start is the Head First series.
The Head First C# book is totally awesome. I learned a lot from it, and it's super easy, comprehensive (and fun!) to read. (Amazon Link)
Then just start a project on your own and apply what you learned. You will pick up faster than you think you can!
Good luck on your quest!

Related

C# / .NET built-in interfaces list [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm looking for full C# standard interfaces list. I'm almost sure that such topic was posted somewhere on MSDN, but I can't find it. Does anyone has a reference?
im sorry but such doc does not exist...
See, msdn documentation is organized by "namespaces", so... you can see that such document would not fit anywhere... by the way, why would you want that?!? if you compile the documents of each interface in the basics dll (system, text, system.data, linq, etc...) you would have a quite large document that would cause more confusion than "de-confusion", since in diferent namespaces interfaces may have the same name...

Pattern for writing Chart Components [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have to write a chart component from scratch in Silverlight 3 and wonder if anybody knows if there are any design patterns, guidelines, tutorials that can help with the process?
Take a look a the Silverlight Toolkit. It is open-source and has chart controls written by Microsoft. This is probably the closest thing to design guidelines you can get.

How to get memory usage of a c# application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm particularly interested in some Visual Studio plugins (or maybe built-in functionality I don't know of) that can help me with that...
You can do this with perfmon - can I suggest you read this article on MSDN magazine that describes auditing memory in detail:
http://msdn.microsoft.com/en-us/magazine/dd882521.aspx
Good luck!
System.Process has a lot of properties you can use to analyse memory usage.
You can get a handle on the current process like this Process.GetCurrentProcess() or another process using one the Process.GetProcessXXX(..) methods

Best (and shortest) C# book [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I need to prepare for C# interview which book is the best and shortest? Thanks
Rob Miles C# Yellow Book
Good, short, and free
If you're looking for something short, I like the pocket references from O'Reilly: http://oreilly.com/catalog/9781449394011/
Normally, you need some knowledge if you want them to be useful though.
Surely you are after C# In Depth by Mr Skeet..?
oreilly's Programing c#. it is several hundred pages, but it is enough detail to answer interview questions, if you can remember a good portion of what you read.
I would skip through the book found at the following link. http://www.amazon.com/Pro-2010-NET-Platform-Fifth/dp/1430225491#reader_1430225491. I know that it is 1712 pages, but if you skim through parts of the book that you only have a rough understanding of, you will be better prepared than skimming through a book that is lacking in information.

what is the best technique of using OOP? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Can u give a real sample scenario using OOP structure for developing programs.
Would appreciate your response.
Thank you,
OOP principle - program to interfaces
What does "program to interfaces, not implementations" mean?
For more of OOAD, read this book. It explains majority OOAD principles and techniques very well.
(source: headfirstlabs.com)

Categories