vote up 118 vote down star
188

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 10 vote down

You can play default windows sounds this way :

System.Media.SystemSounds.Beep.Play();
...
System.Media.SystemSounds.Question.Play();
link|flag
4  
Sounds like fun! :) – Sandor Davidhazi May 14 at 20:39
show 1 more comment
vote up 1 vote down

MatchEvaluator Delegate: Represents the method that is called each time a regular expression match is found during a Replace method operation.

link|flag
vote up 8 vote down

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

link|flag
vote up 0 vote down

System.Runtime.Remoting.Proxies.RealProxy.

This class is pretty esoteric and normally only used in weird remoting scenarios; however, I have used it for the ability to dynamically implement an interface. It is also used by some mocking frameworks for the same purpose. See also Extending RealProxy.

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

Environment.NewLine
link|flag
vote up 9 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 1 vote down

Expanding the My Namespace has always been useful to me

Namespace My

    <Global.Microsoft.VisualBasic.HideModuleName()> _
    Friend Module MyStuff
        Sub Foo()

        End Sub
    End Module

End Namespace
link|flag
show 1 more comment
vote up 44 vote down

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

Not really hidden but:

  • System.Drawing.Printing.PrinterSettings.InstalledPrinters: Returns a collection with all printer names installed in the machine.
link|flag
show 1 more comment
vote up 2 vote down

The DebuggerStepThroughAttribute is great for properties and also for those helper functions that you have no desire to step through. Unfortunately, it seems rarely known:

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

link|flag
vote up 48 vote down

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

link|flag
4  
I was surprised to find that this didn't work inside of the .NET compact framework. – Slapout Apr 29 at 21:15
show 6 more comments
vote up 19 vote down
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|flag
vote up 24 vote down

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|flag
5  
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
3  
HashSet is cool, but I wouldn't consider it at all similar to List ;) – Juliet Jan 30 at 23:23
12  
No. It is not a replacement for List, it is a different data structure. – Matt Olenik Apr 27 at 16:43
vote up 39 vote down
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|flag
vote up 32 vote down
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|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 11 vote down

I just found:

System.Security.Cryptography.ProtectData

Used to encrypt data for the current user or the local machine.

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 0 vote down
public static int Compare(string strA, string strB, bool ignoreCase)

Great to compare two strings with possible difference in letter case.

link|flag
vote up 1 vote down

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

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

For generating code files I like System.CodeDom.

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 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 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

Your Answer

Get an OpenID
or

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