Like anything in life, what you don\'t know doesn\'t help you and as a new devel
ID: 642850 • Letter: L
Question
Like anything in life, what you don't know doesn't help you and as a new developer, I know that the more I learn about the different .NET classes out there and their uses, the more I have in my toolbox.
However, sort of like an ocean where you just not sure where to start, I thought I would asked the community, does anyone know:
any recommendations on breaking down a .NET library per class (or smaller), where to start?
A site that might do just that per article/blog
Or any other recommendations on making it a regular (i.e. daily/weekly) practice to learn a new class in .NET? Which Library to start with...etc?
NOTE: I read allot or regularly, but I thought an effort geared directly at learning about a new class and its uses on a regularly bases would help.
Thanks,
Explanation / Answer
I don't think learning the names of classes/methods implemented in a framework is something enjoyable and useful for your future career. It is especially true for .NET Framework which is, today, really huge, not counting the set of additional Microsoft libraries you can install.
The drawback of this approach is also the fact that you'll quickly forget the most stuff you learned. Can you really retain hundreds and hundreds of names?
Another drawback is that you'll have to learn stuff you never need. For example why would I learn how to extend Visual Studio, if I'm not ready to create Visual Studio extensions? It's even worse when it comes to obsolete code.
Instead, search for the appropriate classes when working on a project. Object Browser, in Visual Studio, has a good search capability which is very helpful for that. In addition you have Google, and of course Stack Overflow.
Example:
you learn one day that there is a JavaScriptSerializer class in System.Web.Script.Serialization. So what? Can you remember it forever? Will you try to understand why and when is it useful? Do you really understand immediately that this has something to do with JSON?
you're writing an application which must parse JSON. You open Object Browser and search for JSON. You find that there is an implementation for MVC projects, and also a JavaScriptSerializer class in System.Web.Script.Serialization with Serialize and Deserialize<T> methods. Now you can really appreciate those classes and choose what is more appropriate for your project: the MVC implementation or the JavaScriptSerializer class.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.