vote up 121 vote down star
191

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

vote up 11 vote down

You can play default windows sounds this way :

System.Media.SystemSounds.Beep.Play();
...
System.Media.SystemSounds.Question.Play();
link|flag
5  
Sounds like fun! :) – Sandor Davidhazi May 14 at 20:39
show 1 more comment
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 10 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 10 vote down

I'd have to say System.ComponentModel.BackgroundWorker.

It's not exactly easy to use, because you still have to understand how asynchronous method calls work, and you have to know about avoiding cross-thread exceptions, using Invoke to update the UI, etc. But it's considerably easier to use than System.Threading.Thread, which is what a lot of developers gravitate towards when they need to implement a background process.

link|flag
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 9 vote down

I don't think it's a hidden feature, but I don't see it used often:

[System.Diagnostics.DebuggerStepThrough]

Quite useful when you have a pile of accessor-type functions or something which you don't want to be stepping into while debugging.

link|flag
2  
I agree if it is used for accessor-type, but I have seen it abused, which hide bugs. – David Basarab Aug 25 at 20:52
1  
It's a great way to exclude methods from code-coverage results as well, but as David mentions it can be abused. Still, my jack-knife can be abused--but that doesn't make it a great tool! – Yoooder Aug 25 at 21:00
show 1 more comment
vote up 8 vote down

Very helpful class to measure performance System.Diagnostics.StopWatch
See detailed posts here

link|flag
vote up 8 vote down

If you have a very complicated object to debug and don't want to spend the time creating a Visualizer to get a specialized view, you can use the built-in HTML Visualizer by creating a ToHtmlString() method in your class. This is based on the fact that the .NET debugger very reliably allows you to add function calls in your watch windows.

Here's an example I recently did of presenting an interleaved time-lapse view of the data state throughout a group of tasks:

Compiler State View

link|flag
show 3 more comments
vote up 7 vote down

Here's one, inspired by Marcc's related Diagnostics attribute:

System.Diagnostics.DebuggerDisplay

It allows you to define the format of the string displayed in the Immediate / Locals window of Visual Studio, providing a string like "Person: {name} Cars: {cars.Count}" will display in the windows like "Person: John Doe Cars: 2".

link|flag
2  
This also allows you to stop non-Pure property getters (ones whose evaluation has side effects on program state) from altering program state due to implicit func eval. – 280Z28 Aug 26 at 5:29
show 1 more comment
vote up 7 vote down

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

link|flag
vote up 6 vote down

System.Text.UTF8Encoding for converting streams.

link|flag
vote up 6 vote down

WeakReference. Extract from here ...

The garbage collector cannot collect an object in use by an application while the application's code can reach that object. The application is said to have a strong reference to the object.

A weak reference permits the garbage collector to collect the object while still allowing the application to access the object.

This can be used to implement weak events, see here

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 5 vote down
Type.TryParse()

Environment.NewLine
link|flag
vote up 5 vote down

More of a runtime feature, but I recently learned that there are two garbage collectors. The workstation gc and the server gc. Workstation is the default, but server is much faster on multicore machines.


<configuration>
   <runtime>
      <gcServer enabled="true"/>
   </runtime>
</configuration>

Be careful. The server gc requires more memory.

link|flag
show 2 more comments
vote up 5 vote down

TypeDescriptor when using Windows Forms data binding. This is how BindingSource can pretend to be any other object type.

link|flag
show 3 more comments
vote up 4 vote down

BaseValidator Makes writing Custom validated controls much easier.

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

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

link|flag
vote up 4 vote down
System.Reflection.Assembly.GetExecutingAssembly.Location

Gets the path (and name) of the current running application.

I have a few related commands at my Blog

link|flag
vote up 4 vote down

Using StackFrame to get information about calling method and running class. You can travel the stack and get the methodName, calling calss etc. You can get the stackFrame using

StackFrame frame = new StackFrame(n);

Where n is the layer above the current call And then you can retrive information by using its properties. for example use the following the get the information of the calling method:

MethodBase methodBase = frame.GetMethod();
link|flag
vote up 4 vote down

System.Net.Mail.MailAddress - no more regexp for server-side email address validation ;)

link|flag
vote up 4 vote down

Convert hexadecimal\octal\binary string to decimal:

Convert.ToInt32("2A", 16); // equals 42
Convert.ToInt32("52", 8); // equals 42
Convert.ToInt32("101010", 2); // equals 42

A great way to convert numbers to byte array:

byte[] bytes = BitConverter.GetBytes(32767);

Or better, use Jon Skeet's MiscUtil for endian bit conversion.

link|flag
show 1 more comment
vote up 3 vote down

FormatterServices

link|flag
vote up 3 vote down

In line with String.IsNullOrEmpty().....

String.Empty

usage:

string s = String.Empty;
//OR
string s = string.Empty;

instead of

string s = "";
link|flag
1  
public static readonly String Empty = ""; :) – Chris S Mar 27 at 13:40
vote up 3 vote down

FormatterServices.GetUninitializedObject

Creates a new instance of a type without calling any constructor. This will work with private constructors, non-parameterless-constructors, any type of constructor (since they aint called).

I believe this is the only way to ensure that a static constructor on a type is executed if you only have a Type instance. (You can not invoke it with reflection, and the Activator may fail due to nonmatching constructors.)

A somewhat esoteric problem, and solution.

link|flag
show 2 more comments
vote up 3 vote down

I came across this today System.Data.SqlTypes.SqlDateTime

it has

System.Data.SqlTypes.SqlDateTime.MinValue;
System.Data.SqlTypes.SqlDateTime.MaxValue;

among other methods & properties.

link|flag
vote up 3 vote down

I use these built-in delegate types (and their "overloaded" cousins) all the time:

  • Func<T, TResult>
  • Action<T>
  • Predicate<T>

Along with Lambdas is C# 3.0 they're pretty useful and can help make things more readable. (You can of course still use them with C# 2.0 and anonymous delegates).

link|flag
vote up 3 vote down

The Managed, Native, and COM Interop Team at CodePlex have released a modified, open source TlbImp tool that allows simple creation of customized wrappers for pesky COM libraries.

link|flag
vote up 3 vote down

My favorite hidden feature is the SDK. OK, not very hidden, for some people, but most people seem to be able to develop .NET applications only with a tool or IDE, like Visual Studio. The SDK is free, and for small applications it's way quicker for me to write them up in emacs and then just build them with the command line compilers, csc.exe or vbc.exe.

Plus all the SDK tools are handy, too. XML Schema Definition Tool (xsd.exe), Strong Name Tool (sn.exe), and many others.

link|flag

Your Answer

Get an OpenID
or

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