up vote 227 down vote favorite
313
share [g+] share [fb]

What are your favorite lesser-known .NET Base Class Library classes and methods?

link|improve this question
9  
Great question! The framework is so expansive that a lot of times one doesn't think to look (or doesn't know where to look) to the framework to achieve common (and sometimes not so common) tasks. – Giovanni Galbo Sep 24 '08 at 2:13
4  
Super-useful question! I found some really cool stuffs here. – aku Sep 24 '08 at 9:24
show 3 more comments
feedback

closed as not constructive by Tim Post Aug 19 '11 at 15:01

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

88 Answers

1 2 3

Path class. I can't count the times the lack of its usage came up in code-reviews. People tend to go for the string concatenations and sub-stringage instead of using Path.Combine and Path.GetFileNameWithoutExtension, among others.

link|improve this answer
1  
While I heartily agree, the Path class isn't actually a base class, is it? – Tor Haugen Sep 29 '09 at 7:34
1  
@Tor - Path is in mscorlib.dll, so it is most definitely part of the BCL – Richard Szalay Sep 29 '09 at 9:44
11  
You need to be careful with Path.Combine, if the second parameter starts with a "/", it may not do what you expect. – Noon Silk Sep 29 '09 at 11:28
2  
Seriously, why is this so upvoted? I never thought of Path as hidden... I've used it so many times already! And it was always there in the IO namespace, the kind of thing you import everywhere. – Camilo Martin Nov 22 '10 at 23:40
2  
@CamiloMartin: I think the issue is we all see (and sometimes even we do it ourselves for "quick" tasks) string concatenation when Path.Combine would be better and often more powerful. – Mark Hurd Jun 19 '11 at 11:08
show 3 more comments
feedback

System.Security.SecureString - More people should be aware of this if their program accepts passwords or passphrases, or stores credit card numbers in memory. SecureString values are stored encrypted (obfuscated, rather), but most importantly, they are never swapped to disk and can be disposed of immediately when you're done with them.

They're tricky to use because you can only build them one character at a time (to encourage you to build them by capturing keystrokes as the user types their password), and require three lines of code to recover and then wipe their plain text, but when used properly they can make a program more secure by avoiding the virtual-memory vulnerability.

// Make a SecureString
SecureString sPassphrase = new SecureString();
Console.WriteLine("Please enter your passphrase");
ConsoleKeyInfo input = Console.ReadKey(true);
while (input.Key != ConsoleKey.Enter)
{
   sPassphrase.AppendChar(input.KeyChar);
   Console.Write('*');
   input = Console.ReadKey(true);
}
sPassphrase.MakeReadOnly();

// Recover plaintext from a SecureString
// Marshal is in the System.Runtime.InteropServices namespace
try {
   IntPtr ptrPassphrase = Marshal.SecureStringToBSTR(sPassphrase);
   string uPassphrase = Marshal.PtrToStringUni(ptrPassphrase);
   // ... use the string ...
}
catch {
   // error handling
} 
finally {
   Marshal.ZeroFreeBSTR(ptrPassphrase);
}

Edit: At the end of the example the SecureString is converted into a regular managed string, which makes it vulnerable again (be sure to use the try-catch-finally pattern to Zero the string after you're done with it). SecureString's use is in reducing the surface-area of attack by limiting the number of copies the Garbage Collector will make of the value, and reducing the likelihood of being written to the swap file.

The .Net framework is gaining more support for SecureStrings that help eliminate the need to decrypt it. The PasswordBox control in WPF stores its value in a SecureString, System.Diagnostics.ProcessStartInfo's Password property takes a SecureString, and so does the constructor for X509Certificate2. Some third party components are beginning to take it as native currency, too.

link|improve this answer
9  
At the end, you have "uPassphrase", again unscrambled and unlocked in memory. What was the point again? – David Schmitt Sep 24 '08 at 9:15
3  
David, you're right. I edited the answer to embellish on the correct use. – C. Lawrence Wenham Sep 24 '08 at 13:12
8  
Wow, this seems pretty paranoid – gn22 Dec 4 '09 at 0:34
4  
Even with the edited answer, uPassphrase stays in memory unencrypted until the GC runs and it's overwritten with another new object. Due to the nature of the GC and managed memory, the only way to keep the string safe is to never put it in a System.String object. – Daniel May 22 '10 at 17:30
show 3 more comments
feedback

System.Diagnostics.DebuggerDisplay

When you're debugging, if the class is attributed, visual studio will display the information on mouse-over. It even allows you to put in properties of private fields, etc.

[System.Diagnostics.DebuggerDisplay("MyClass: ID={ID} Name={Name} ChildName={_child.Name}")]

Ref: msdn

link|improve this answer
1  
Cool. I'm shocked I didn't know or forgot about this useful attribute. Thanks! – aku Sep 24 '08 at 10:40
1  
Can't you just implement ToString() in your class? – Si. Sep 29 '09 at 7:30
2  
@Si, What if you use ToString() for something else? Besides - why clutter up your actual class-code with things that should only be available when debugging? An attribute is clear, the name says it all, it's decoupled from the class itself (sort of), and it looks cool. ;) – J. Steen Sep 29 '09 at 7:44
3  
I wish standard C++ had this. – Kugel Dec 17 '09 at 0:32
show 2 more comments
feedback

This saves a lot of typing on strings:

string.IsNullOrEmpty()

and

string.IsNullOrWhiteSpace()  // .NET 4 only

Also a hidden gem using events; when declaring an event, a nice way to make sure you never need to check if it's null, is by initializing it to an empty anonymous delegate at declaration time:

public event EventHandler MyASimpleEvent = delegate {};
link|improve this answer
10  
Instead of creating all those anonymous delegates, just use an extension method to fire events and you only have one single place that checks if an event is null... myEvent.Fire(this, EventArgs.Empty); maxschmeling.blogspot.com/2008/06/… – Max Schmeling Sep 30 '08 at 17:55
6  
Beware using IsNullOrEmpty in VS2005 - connect.microsoft.com/VisualStudio/feedback/… – Richard Szalay Mar 30 '09 at 19:44
4  
@Richard: This was fixed during CTP... – Erik Forbes May 14 '09 at 20:10
show 6 more comments
feedback

A cool way to log the name of the current method you're in:

string myMethodName = MethodBase.GetCurrentMethod().Name;


Console.WriteLine(myMethodName);
link|improve this answer
20  
Bear in mind of course that the method you're in might be inlined. If you want to use the above method, mark your function as follows: [MethodImpl(MethodImplOptions.NoInlining)] – stusmith Sep 24 '08 at 13:12
3  
The method will NOT be inlined by the JIT, because it would change the behavior of the program. – Filip Navara Aug 28 '09 at 1:59
show 4 more comments
feedback

Getting the list of countries. Useful for populating the drop down box.

foreach (CultureInfo ci in CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures
{
       RegionInfo ri = new RegionInfo(ci.LCID);
       Console.WriteLine(ri.EnglishName);
}

ref: http://jdconley.com/blog/archive/2007/09/05/list-of-country-names.aspx#1

link|improve this answer
2  
Interesting, but doesn't work. – Shawn Wildermuth Sep 20 '10 at 20:57
show 2 more comments
feedback

System.Diagnostics.ConditionalAttribute. It makes the compiler ignore methods or classes that should only be active in certain build profiles. EG:

 [Conditional("DEBUG")]
 private void DumpProperties()
 {
     foreach (PropertyInfo prop in this.GetType().GetProperties())
         Console.WriteLine(prop.GetValue(this, null));
 }
link|improve this answer
1  
Just to clarify this: you can safely call (in the above example) DumpProperties() in both debug and release, but in release it just won't do anything. – stusmith Sep 24 '08 at 13:13
1  
Is this the same as putting #ifdef DEBUG/#endif around the method contents? – Mark Pattison Mar 27 '09 at 13:53
6  
Mark, as clarified by stusmith, no it is not the same. In release, it can still be called, it just won't do anything. The advantage here is that you don't need to wrap #ifdef DEBUG around the method AND the calling code, just decorate the method with the attribute. Very clean. – Matt Olenik Apr 27 '09 at 16:29
3  
Just as a warning: if you call Method(i++) and the method is marked [Conditional("DEBUG")], then the i++ will be evaluated only in DEBUG mode, i.e. the variable i will have a different value depending on whether you’re in debug or release mode... – Timwi Sep 12 '10 at 21:24
show 1 more comment
feedback

Use the System.Diagnostics.Stopwatch

Don't do StartTime with DateTime, and then EndTime with DateTime.

See this answer.

link|improve this answer
3  
I learned this one here :) – 280Z28 Aug 26 '09 at 5:27
8  
If you do need to use DateTime.Now in situations where performance is a concern then it's good to be aware of DateTime.UtcNow which is faster (it doesn't need to calculate local time) – STW Aug 26 '09 at 15:06
show 3 more comments
feedback

Using System.Environment.NewLine instead of "\r\n".

link|improve this answer
2  
Highly underused. +1 – Pat Mar 5 '09 at 17:22
7  
I was surprised to find that this didn't work inside of the .NET compact framework. – Slapout Apr 29 '09 at 21:15
3  
Why would you use \r\n at all ever anyhow? Almost all applications are perfectly happy with just a \n, as far as I can tell... – Eamon Nerbonne Mar 18 '10 at 8:30
3  
@Eamon Nerbonne: I take it you've never tried to open and re-save anything from Notepad where only \n was used. To paraphrase, I'd argue: Why would you use \n at all ever anyhow? Almost all applications are perfectly happy with just a \r\n, as far as I can tell... – Dinah Jul 20 '10 at 19:40
show 6 more comments
feedback

Most definitely String.Join(char separator, string[] list) to create "a,b,c" from {"a","b","c"}. This alleviates keeping track of a boolean to check whether the first item is already used.

link|improve this answer
1  
Make it an extension method on IEnumerable<string> for bonus points – George Mauer Aug 7 '10 at 14:32
show 1 more comment
feedback
System.Data.Common.DbConnectionStringBuilder

and

System.Data.SqlClient.SqlConnectionStringBuilder

These allow you to build a connection string in a programmatic way without have to remember the specific syntax.

Documentation: DbConnectionStringBuilder on MSDN

link|improve this answer
show 1 more comment
feedback
System.Collections.ObjectModel.ObservableCollection<T>

Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed.

link|improve this answer
show 1 more comment
feedback

IEnumerable<T> isn't used nearly enough if you ask me.

link|improve this answer
3  
it's used everywhere in LINQ – Mark Cidade Sep 25 '08 at 5:22
7  
I was gonna say: LINQ is a game-changer as far as IEnumerable<T> is concerned. – Robert Rossney Oct 6 '08 at 19:22
1  
Don't forget IList<T> and ICollection<T> – Joel Coehoorn Oct 7 '08 at 18:53
3  
Actually, LINQ uses IQueryable<T> everywhere, which implements IEnumerable<T>. – Daniel T. Feb 24 '10 at 6:16
4  
@DanielT that's not exactly true. When doing simple LINQ2Objects all the methods you call are defined on IEnumerable<T>. I don't think IQueryable comes into play until you start using a LINQ provider – George Mauer Aug 7 '10 at 14:35
show 3 more comments
feedback

TextRenderer.MeasureText() is great for figuring out how large to draw your text. So often I see:

// this == something derived from Control
Graphics g = this.CreateGraphics();
Size size = g.MeasureString(this.Text, this.Font).ToSize();
g.Dispose();

When really all you need is:

Size size = TextRenderer.MeasureText(this.Text, this.Font);

The former is how you did it in 1.0 and 1.1; the latter is how you do it in 2.0+. It's much cleaner, doesn't requiring creating an object which must be disposed, and doesn't leave you open to accidentally not disposing of a resource. Plus if you use TextRenderer.DrawText() your text will look better and localize better. This stuff just plain rocks when you're doing custom controls.

Edit: On the I18N/G11N front, here's more info: the shaping engines for international text have been updated quite a bit in the Uniscribe subsystem of the Windows operating system, but not in GDI+ subsystem. So sometimes things looked strange/wrong if your .NET app was using the Graphics based method (AKA, GDI+). However, using the TextRenderer approach (AKA, Uniscribe) eliminates these problems and allows you to render text correctly (perfectly?) in the new locales introduced with Windows XP SP2 (such as Bengali and Croatian). (Caveat emptor: I have no idea how or even if either of these methods play with vendor specific extensions to specific code pages.)

link|improve this answer
2  
Oh, where were you six months ago? – Robert Rossney Oct 6 '08 at 19:28
show 1 more comment
feedback

System.Convert is a lot nicer than people think.

It's a bit more forgiving on what you put in. Use Reflector to see how it converts between different types.

Ints are defaulted to 0 from bad input, bools to false and so on.

It's made int.Parse, bool.Parse and all other .Parse almost obsolete for me. TryParse is still usefull for the most secure parsing.

link|improve this answer
14  
Uhm what? System.Convert doesn't do that! It throws a FormatException generally speaking. There is one "gotcha", it does convert the null string into 0 - which, frankly, is a bug (MSDN sample code actually try..catches for a never-thrown ArgumentNullException, illustrating that the doc-writers themselves forget this gotcha...) – Eamon Nerbonne Mar 10 '10 at 18:03
show 1 more comment
feedback

I didn't know about System.Net.WebClient until it was posted in an answer to a question of mine.

WebClient client = new WebClient ();
client.DownloadFile("http://stackoverflow.com/", "target.html");
client.UploadFile("http://mysite.com/", "hello.txt");
link|improve this answer
9  
And we don't know about it either, since your answer doesn't say a single word about it. – Kyralessa Nov 5 '08 at 22:34
2  
WebClient is unhandy because it doesn't deal well with mime-types and in particular content-encoding. Better use HttpWebRequest; that at least lets you get at those crucial parts of the response when needed (with webclient, you're stuck) – Eamon Nerbonne Mar 10 '10 at 18:07
show 4 more comments
feedback

System.Web.VirtualPathUtility

Provides utility methods for common virtual path operations.

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

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)

    Dim sb As New StringBuilder()
    Dim pathstring As String = Context.Request.FilePath.ToString()
    sb.Append("Current file path = " & pathstring & "<br />")
    sb.Append("File name = " & VirtualPathUtility.GetFileName(pathstring).ToString() & "<br />")
    sb.Append("File extension = " & VirtualPathUtility.GetExtension(pathstring).ToString() & "<br />")
    sb.Append("Directory = " & VirtualPathUtility.GetDirectory(pathstring).ToString() & "<br />")
    Response.Write(sb.ToString())

    Dim sb2 As New StringBuilder()
    Dim pathstring1 As String = Context.Request.CurrentExecutionFilePath.ToString()
    sb2.Append("Current Executing File Path = " & pathstring1.ToString() & "<br />")
    sb2.Append("Is Absolute = " & VirtualPathUtility.IsAbsolute(pathstring1).ToString() & "<br />")
    sb2.Append("Is AppRelative = " & VirtualPathUtility.IsAppRelative(pathstring1).ToString() & "<br />")
    sb2.Append("Make AppRelative = " & VirtualPathUtility.ToAppRelative(pathstring1).ToString() & "<br />")
    Response.Write(sb2.ToString())

End Sub
link|improve this answer
show 1 more comment
feedback
System.Web.Security.FormsAuthentication
.HashPasswordForStoringInConfigFile(string password, string format)

Does the simple and common task of getting the MD5 or SHA1 hash of a given string. Since almost every system I have ever written stored password hashes instead of encrypted data or the plaintext, this is a godsend to avoid mucking about with the Crypto stuff.

link|improve this answer
show 3 more comments
feedback

Not really hidden but:

  • System.Drawing.Printing.PrinterSettings.InstalledPrinters: Returns a collection with all printer names installed in the machine.
link|improve this answer
1  
Good find! I can definitely use this in one of our projects. – PhantomTypist Sep 29 '09 at 13:53
feedback

HashSet<T>. It is a new class in the .NET Framework 3.5 and is very similar to List<T> only better.

http://blogs.msdn.com/bclteam/archive/2006/11/09/introducing-hashset-t-kim-hamilton.aspx

link|improve this answer
11  
That is a subjective statement. A HashSet cannot store two elements that are equivalent, and it does not guarantee an enumeration order. If you need either of those, or the ability to index into the collection, then you'd need to use a List of some sort. – Marcus Griep Oct 21 '08 at 17:00
12  
HashSet is cool, but I wouldn't consider it at all similar to List ;) – Juliet Jan 30 '09 at 23:23
29  
No. It is not a replacement for List, it is a different data structure. – Matt Olenik Apr 27 '09 at 16:43
2  
thumb down simply because the statement is incorrect. The term better is dependent on the context it is being used. – user88637 Jul 21 '10 at 12:23
feedback

You can play default windows sounds this way :

System.Media.SystemSounds.Beep.Play();
...
System.Media.SystemSounds.Question.Play();
link|improve this answer
13  
Sounds like fun! :) – Sandor Davidhazi May 14 '09 at 20:39
1  
this rules and will get added to every application I write now :) – jim Nov 23 '09 at 20:01
1  
I found this useful for debugging timing/threading related code. – AndrewS Feb 24 '10 at 6:09
show 1 more comment
feedback

String.Empty seems to be a hidden feature for many developers. String.IsNullOrEmpty(string) too.

link|improve this answer
3  
@Timwi Where have you read that String.Empty is obsolete? The MSDN msdn.microsoft.com/en-us/library/system.string.empty.aspx does not say anything about that. It even does not say that one should use "" instead of String.Empty. And readability is a very personal factor. – PVitt Sep 15 '10 at 13:55
6  
Because String.Empty is static. A comparison with "" always creates a new instance of string that is only used for the comparison. Thus leads to many useless objects spread out over the heap. On the other hand String.Empty as a static field is only instanciated once at a time und does not pollute the heap. – PVitt Sep 16 '10 at 9:06
show 2 more comments
feedback

For some reason many people don't kow about System.Text.StringBuilder. I couldn't live without it!

link|improve this answer
show 1 more comment
feedback
System.IO.Path.Combine

Use this instead of concatenating the 2 strings yourself.

link|improve this answer
2  
I used this everytime I am concatenating file paths since I found out about it – Dan Seaver Aug 25 '09 at 20:42
2  
Another BCL that I've found to be a life-saver (even if not hidden) is System.Uri. I never realized the power of it until debugging an issue related to percent-encoding and had to really get under the hood. – STW Aug 25 '09 at 20:50
2  
It's not a straight concatenation... see: thingsihateaboutmicrosoft.blogspot.com/2009/08/… – Shog9 Aug 28 '09 at 0:28
feedback

The BitConverter.ToString method is very useful when working with binary data. I use it for debugging, traces and within unit testing.

It will take a byte array and return a printable string representation - something like "04-08-01-23-45-67-89-AB-CD-EF".

I also use Regex.Split(string, string) for splitting a delimited strings.

It is somewhat similar to String.Split(), but using Regex.Split() is much more intuitive: Regex.Split() result string array only contain the data you need, while String.Split() result also contains the delimiters.

link|improve this answer
11  
String,Split removes the delimiters – Rune Grimstad Oct 25 '08 at 19:15
show 1 more comment
feedback

Tired of typing the unwieldy

string.Equals(x, y, StringComparison.CurrentCultureIgnoreCase)

?

Instead, try one of the properties on the StringComparer class:

StringComparer Properties

Instead of the above, you can type:

StringComparer.CurrentCultureIgnoreCase.Equals(x, y);

Even though it's only slightly shorter, it's nice because it keeps the focus on the two things you're comparing, without the distraction of the StringComparison.CurrentCultureIgnoreCase parameter. And you can break it up if you like:

var comparer = StringComparer.CurrentCultureIgnoreCase;
comparer.Equals(x, y);
link|improve this answer
2  
It entirely depends on what you're comparing and the reason for doing so. – Kyralessa Mar 19 '10 at 3:23
show 1 more comment
feedback

This is cool. VisualStyleInformation Class provides a lot of information about the current visual style of the operating system.

System.Diagnostics.Debugger.Break() is used by virtually everyone but is very convenient for debugging .NET services.

NetworkChange.NetworkAvailabilityChanged Event makes it easy to monitor network availability.

link|improve this answer
feedback

Here's a little snippet to tell which class/method the call is coming from. Useful in some special situations:

StackFrame frame = new StackFrame(1);
frame.GetMethod().Name; //Gets the current method name

MethodBase method = frame.GetMethod();
method.DeclaringType.Name //Gets the current class name
link|improve this answer
3  
Unfortunately because of the way optimizations work, this isn't reliable. – Maslow May 28 '09 at 16:58
show 1 more comment
feedback
1 2 3

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