vote up 119 vote down star
189

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

flag
1  
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
show 3 more comments

81 Answers

1 2 3 next
vote up 23 vote down

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|flag
1  
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
show 1 more comment
vote up 3 vote down

FormatterServices

link|flag
vote up 6 vote down

System.Text.UTF8Encoding for converting streams.

link|flag
vote up 4 vote down

BaseValidator Makes writing Custom validated controls much easier.

link|flag
vote up 10 vote down

System.Web.UI.WebControls.MailDefinition

"The MailDefinition class can be used by controls to create a MailMessage object from a text file or a string that contains the body of the e-mail message. Use the MailDefinition class to simplify creating predefined e-mail messages to be sent by a control."

link|flag
vote up 15 vote down

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

link|flag
vote up 65 vote down

This saves a lot of typing on strings:

string.IsNullOrEmpty()

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|flag
4  
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
3  
Beware using IsNullOrEmpty in VS2005 - connect.microsoft.com/VisualStudio/feedback/… – Richard Szalay Mar 30 at 19:44
3  
@Richard: This was fixed during CTP... – Erik May 14 at 20:10
show 6 more comments
vote up 49 vote down

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|flag
1  
Is this the same as putting #ifdef DEBUG/#endif around the method contents? – Mark Pattison Mar 27 at 13:53
2  
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 at 16:29
show 2 more comments
vote up 108 vote down

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|flag
show 3 more comments
vote up 59 vote down

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

string myMethodName = MethodBase.GetCurrentMethod().Name;


Console.WriteLine(myMethodName);
link|flag
7  
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
show 5 more comments
vote up 3 vote down

System.Runtime.InteropServices.Marshal

I hate having to do interop, and particularly PInvoke, but there are all kinds of goodies in Marshal for turning function pointers into delegates, and vice versa, turning Win32 error codes into something a little more helpful (often only a little though), and so on.

link|flag
vote up 93 vote down

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|flag
5  
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. – Chris Wenham Sep 24 '08 at 13:12
show 2 more comments
vote up 45 vote down

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|flag
show 1 more comment
vote up 15 vote down

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|flag
3  
String,Split removes the delimiters – Rune Grimstad Oct 25 '08 at 19:15
vote up 9 vote down

System.Diagnostics namespace contains many "hidden" gems. I have used extensively the DebuggerStepThroughAttribute, I have subclassed many times the TraceListener class and I want to see in more detail the PerformanceCounter.

link|flag
vote up 34 vote down

System.Convert is a lot nicer than people think.

It's very forgiving on what you put in. Just 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|flag
vote up 7 vote down

System.Linq is saving me a lot of time on Visual Studio 2008.

link|flag
vote up 4 vote down

System.Environment is one of my favorites. Especially the Workingset property.

link|flag
vote up 32 vote down

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

link|flag
3  
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
show 4 more comments
vote up 24 vote down

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|flag
vote up 17 vote down

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|flag
vote up 5 vote down

If you are drawing custom Windows Forms controls, then the following classes are essential for your OnPaint() method (or Paint event):

using System.Windows.Forms;

These classes all provide methods that will do most of the drawing work for you and keep your controls looking professional and native.

link|flag
vote up 26 vote down

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|flag
show 1 more comment
vote up 1 vote down

For generating code files I like System.CodeDom.

link|flag
vote up 17 vote down

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|flag
1  
Unfortunately because of the way optimizations work, this isn't reliable. – Maslow May 28 at 16:58
show 1 more comment
vote up 9 vote down

String.Format(). Allows you to get rid of the wonkiness of "This" + " is" + " my favorite " + " Application";

link|flag
2  
If you're not using formatting, you should consider using String.Concat() - it's even faster! – Richard Szalay Mar 30 at 19:53
3  
The compiler will transform ("a" + 5) to String.Concat("a", 5). It will also transform ("a" + "b") to "ab". – SLaks Jun 4 at 17:16
show 2 more comments
vote up 67 vote down

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|flag
show 5 more comments
vote up 1 vote down

I like to use System.Collections.CaseInsensitiveComparer to compare strings.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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