vote up 14 vote down star
4

You often see, on sites like TheDailyWTF.com, examples of over engineered code that should have just been a call to a built-in method within the .Net framework.

What namespaces/classes should be considered essential knowledge for a developer starting his/her first .Net job?

As per Joel's instruction for these types of questions, please limit your answers to individual items for voting purposes.

flag

12 Answers

vote up 12 vote down check
System;
System.Collections;
System.Collections.Generic;
link|flag
I'd like to add System.Text.RegularExpressions as well. – Vivek Oct 11 '08 at 12:41
vote up 4 vote down

System.String

and learn how to use regular expressions that are exposed via the System.Text.RegularExpressions namespace.

This will save you a huge amount of time if you end up re-writing text parsers or other string related tasks that have built in functions for them already.

http://www.regular-expressions.info/dotnet.html

And the daily WTF is awesome :D

link|flag
vote up 0 vote down

http://msdn.microsoft.com/en-us/library/system.xml.aspx

System.Xml is also very good. Learn how to use these classes/methods so that you can manipulate XML files very quickly and easily without reinventing the wheel. Even if you never use XML yourself, you will come across it everywhere. Put some time into learning:

XML

XSLT

Schemes

RSS

SOAP

As all of these are used extensively in .net applications. You can find good information for almost all of these at:

http://www.w3schools.com/

And also; when you learn how to use it - please don't abuse it :D

link|flag
vote up 4 vote down

using System;

System is probably the most important namespace as it contains the core features such as Object and Array as well as the GC (Garbage Collector).

link|flag
vote up -1 vote down

System.Data, particularly Datatable,

link|flag
vote up 4 vote down

System.IO is very important.

Understanding how Streams and the various implementations work (FileStream, MemoryStream, CompressionStream) when combined with binary data or text from a TextReader/TextWriter instance is an essential skill.

link|flag
The streams are an essential part to understand. However its not the most intuitive (and in my opinion one of the worst designed bits of the framework) – alexmac Oct 11 '08 at 10:19
vote up 1 vote down

You should thoroughly look over this application. It contains many patterns and best practices that you should follow.

patterns & practices Guidance Explorer

link|flag
vote up 1 vote down

If you're working in VB.NET I'd say the My namespace is very important. It contains shortcuts to a lot of areas of the framework that used to be spread all over the place in the framework. It's also quite intuitive. You can write things like:
For Each Printer in My.Computer.Printers
or
My.Computer.FileSystem.OpenFile(Filename)
My.Computer.Info.AvailablePhysicalMemory
My.Computer.Screen.PrimaryScreen.WorkingArea

link|flag
Yeah, and a great way not to be able to transition to C# when needed :) Really, I would suggest avoiding the My namespace unless working alone. Oh, and in BCL it's System.IO.File.Open(FileName) - it's even shorter :D – OregonGhost Oct 11 '08 at 8:13
Yep agreed I would avoid My namespace – alexmac Oct 11 '08 at 10:21
While not explicitly stated in the question (I'm debating changing it now), my intent is to learn C# first so the My namespace, while useful to many, isn't useful to me. Thanks though! – AgentConundrum Oct 14 '08 at 20:53
vote up 5 vote down
System.IDisposable

Not properly disposing objects that implement it (streams, database connections, sockets, etc) leads to locked file errors, open database connections and a whole lot of other unpleasant and hard to find bugs in your software.

http://www.codeproject.com/KB/cs/idispose.aspx

link|flag
Dispose is clearly not a beginner issue in my opinion. – madgnome Oct 11 '08 at 8:25
Just because new and "experienced" high level developers do now know how important it is to manage resources you should not ignore it as a beginner. – Nelson LaQuet Oct 11 '08 at 9:04
1  
Knowing how to implement IDisposable isn't for beginners but knowing that it exists and that you should dispose of objects that implement it is. – James Newton-King Oct 11 '08 at 18:44
vote up 0 vote down
  • System.IO for file operations
  • System.Collections & System.Collections.Generic - learn how to manipulate / use Lists, Dictionary, etc.
link|flag
vote up 0 vote down

There should be some line to be drawn between a Windows Developer and a Web Developer, where either can be using the .Net Framework. System.Web is very useful if you are doing Web Development as well as knowing how .Net interacts with IIS, while this may be irrelevant for a Developer who does Windows and Console Applications. These are starting to blur at times so a developer should try to see where they want to be in the stack, e.g. do they want to do it all like in a small business environment or focus mainly on development like bigger shops can do.

link|flag
vote up 1 vote down

System.Brains and System.CommonSense

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.