vote up -10 vote down star
1

What is your most commonly used namespace in .NET. I know it will vary greatly based upon the types of projects you develop but the stack overflow audience should provide a fairly decent sample set for the types of .NET projects being developed.

I'm simply interest in the name of the namespace (one namespace per answer and no one person should have more than one answer, if someone else has the same answer as you then just upvote thier answer). Try to be as specific as possible (so answering System, isn't helpful).

I'm after this information to help new developers focus thier attention on the most common .NET namespaces...there are after all thousands of them!

To start off mine is almost certainly System.Collections.Generic, I use lists of things everywhere.

flag
3  
Why is "System" not specific? It contains the most commonly used types (Int32, String etc). Yes, there are the System.* namespaces, but thinking about just the types in System it's pretty much universal. – Jon Skeet Mar 2 at 12:38
OK specific is obviously not the word I was searching for...but the fact that any code that does anything will most probably use System more than anything meant that is was obviously going to be top answer but at the same time totally uninformative. – Michael Prewecki Mar 2 at 13:22
3  
What kind of information are you looking for? This question just seems pointless. What will you gain? What problem are you solving? – Jeff Yates Mar 2 at 14:38
3  
New developers should focus on the problem they are solving, not the most popular namespace. – Jeff Yates Mar 2 at 14:39
Not everyone learns by doing Jeff, reading about things without needing to use them helps to know what exists and could possibly be applied in the future, not everyone likes the "just in time learning approach". – Michael Prewecki Mar 3 at 4:28
show 3 more comments

11 Answers

vote up 25 vote down

System.

(For string, int, etc..)

link|flag
2  
+1 (what a question!) – Frank Mar 2 at 12:45
Thanks Richard... very helpful :-) – Michael Prewecki Mar 2 at 13:23
I thought it was clearly the answer, but sometimes one does not see what is right in front of oneself (BTDTGTTS). – Richard Mar 2 at 13:43
vote up 6 vote down

I ran the following script over my the code on my pc

ls -rec -filter .cs -path C:\dev |select-string -pattern "^using\s[\w.]+\s;" | % {$_.Line} |group-object | sort Count -desc |select -first 20

The code includes personal, work, and samples. 11636 files, 96MB of code.

Here are the top 20

  • 6352 System
  • 2068 System.IO
  • 1946 System.Collections.Generic
  • 1895 System.Collections
  • 1829 System.Text
  • 1055 System.Reflection
  • 941 System.Globalization
  • 663 System.Diagnostics
  • 660 System.Data
  • 624 System.Linq
  • 622 System.Threading
  • 569 System.Windows
  • 490 System.Web
  • 488 System.ComponentModel
  • 454 System.Xml
  • 450 System.Runtime.InteropServices
  • 444 System.Web.UI
  • 436 System.Configuration
  • 428 System.Web.UI.WebControls
  • 385 System.Web.UI.HtmlControls
link|flag
Don't forget you can very easily "use" the System namespace without a "using System;" statement if you only use the C# aliases (e.g. int, string). – Jon Skeet Mar 2 at 13:02
indeed, there are plent of ways for the above script to both under and over count. This is a likely top 20, not an exact count. – Scott Weinstein Mar 2 at 13:19
Thanks Scott, if only everyone else was a cooperative :-)...maybe I should have asked for the top two so that everyone could get System out of thier Systems! – Michael Prewecki Mar 2 at 13:25
vote up 4 vote down

System.Runtime.InteropServices

link|flag
vote up 3 vote down

System.Linq

link|flag
vote up 2 vote down

System.Windows.Forms (Controls) and System.Collections.ObjectModel (generic collections)

link|flag
vote up 2 vote down

System.Xml

link|flag
vote up 2 vote down

System

System.IO

System.Text

System.Collections

System.Windows

link|flag
vote up 1 vote down

System.Collections.Generic

link|flag
It's better to use generic collections from System.Collections.ObjectModel – abatishchev Mar 2 at 12:38
I wish we're still in .net 1.1 – danswain Mar 2 at 12:50
And that goes for both of you... :p – Svish Mar 2 at 13:06
vote up 1 vote down

Not necessarily the most used but the most useful to me...

System.Net.Mail

link|flag
vote up 1 vote down

System.Configuration

link|flag
vote up 1 vote down

using System;

The System namespace is the most commonly used namespace in .net.

link|flag

Your Answer

Get an OpenID
or

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