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

The Action lambda is a delegate and hence gets the same delegate goodies that regular ones do - such as BeginInvoke():

new Action(() => MethodIWantToRunAsychronously())
  .BeginInvoke(new AsyncCallback(x => ThingToDoWhenMethodReturns()), null);

What it does: Spawns a new thread and runs MethodIWantToRunAsychronously() on it while your continuing to execute the current method on the current thread. When MethodIWantToRunAsychronously completes, ThingToDoWhenMethodReturns() is called (still) on the new thread.

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

I have to add Exception.GetBaseException(). I can't know how many times I've this code instead:

while(e.InnerException != null)
    e = e.InnerException;
return e.Message;

instead of just:

return e.GetBaseException().Message;
link|flag
vote up 2 vote down

[System.Diagnostics.ConditionalAttribute] - can be used instead of ugly preprocessor directives. For instance:

[Conditional("DEBUG")]
public void Validate()
{
    // ...
}
link|flag
show 1 more comment
vote up 2 vote down

If you're trying to convert between big/little endian then there is IPAddress.HostToNetworkOrder and IPAddress.NetworkToHostOrder. Why these methods were not part of the BitConverter class and in the obvious place people will look we'll never know.

link|flag
vote up 2 vote down
Microsoft.VisualBasic.IsNumeric(object)

Despite being in the Microsoft.VisualBasic.dll assembly, this method can be called by C# just as easily and can quickly let you know if the object being tested can be evaluated as a number.

Related to it are the various TryParse() methods, which attempt to evaluate an object as a number but don't raise exceptions if the call fails... These can be found under a variety of different types such as System.Int32 and System.DateTime

link|flag
1  
You brought me back to my old VB6 days – HuBeZa Aug 26 at 7:42
show 1 more comment
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 1 vote down

If you have a custom MSBuild task in your project that processes a file and subsequently creates .cs files to include in the same build, changes to the source file of the transformation often won't show in debugging without building twice. When you are generating a single file based solely on the content of a single source file, this task is best solved with a SingleFileGenerator. For multiple inputs and/or outputs, you may be stuck with an MSBuild task. In this case you can fix Visual Studio's dependency analysis by adding the following to your .csproj file:

<PropertyGroup>
  <UseHostCompilerIfAvailable>False</UseHostCompilerIfAvailable>
</PropertyGroup>

It's introduces a few other annoyances, but it will allow you to have deterministic, correct single builds (a rather important goal).

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

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

link|flag
vote up 2 vote down

I found several cases where people were not aware of certain properties of the Environment class. In particular, I cleaned up several places in code and changed it to:

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

Use the

System.Diagnostics.Stopwatch

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

See this answer.

link|flag
1  
I learned this one here :) – 280Z28 Aug 26 at 5:27
show 3 more comments
vote up 19 vote down
System.IO.Path.Combine

Use this instead of concatenating the 2 strings yourself.

link|flag
1  
I used this everytime I am concatenating file paths since I found out about it – phsr Aug 25 at 20:42
1  
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. – Yoooder Aug 25 at 20:50
1  
It's not a straight concatenation... see: thingsihateaboutmicrosoft.blogspot.com/2009/08/… – Shog9 Aug 28 at 0:28
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 1 vote down

System.Security.SecurityElement.Escape

Escapes XML entities from a string so you can use it within an XML element. It's used by the framework in generation WS-Security XML, but saves four string replace statements in your own code.

link|flag
vote up 1 vote down

Easy way of making an MD5 or SHA1 hash:

string hash = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("string to hash", "MD5");

Quick way of generating a unique, temporary file on disk:

string tempFilePath = System.IO.Path.GetTempFileName();

The System.Web.VirtualPathUtility class also has some interesting methods for manipulating file paths.

Parse an enum into a string array in one line (eg. get all known colours from KnowColor enumeration into an array):

string[] colours = System.Enum.GetNames(typeof(System.Drawing.KnownColor));

If you want to annoy your server admin when he's at the console, add this to your web app :D

System.Media.SystemSounds.Exclamation.Play();
link|flag
vote up 3 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

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

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

link|flag
vote up 0 vote down

Really useful class is System.Diagnostics.Stopwatch. It saves you from inventing a bicycle every time you need to measure time. It's really helpful when you need to make some time dependent work (perhaps periodic) in some thread.

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

Decimal preserves trailing zeros :

decimal x = 1.0m;
decimal y = 1.00m;
decimal z = 1m;

Assert.IsTrue(x == y);
Assert.IsFalse(x.ToString() == y.ToString());

Assert.AreEqual("1.0", x.ToString(CultureInfo.InvariantCulture));
Assert.AreEqual("1.00", y.ToString(CultureInfo.InvariantCulture));
Assert.AreEqual("1", z.ToString(CultureInfo.InvariantCulture));

Assert.AreEqual("1.000", (x*y).ToString(CultureInfo.InvariantCulture));

This behavior is documented in the MSDN library.

The decimal.Parse method keeps track of trailing zeros too :

decimal x= decimal.Parse("1.0", CultureInfo.InvariantCulture);
decimal y= decimal.Parse("1.00", CultureInfo.InvariantCulture);

Assert.AreEqual("1.0", x.ToString(CultureInfo.InvariantCulture));
Assert.AreEqual("1.00", y.ToString(CultureInfo.InvariantCulture));
link|flag
vote up 1 vote down

Ignore Attribute on Unit-Tests for ignoring slow performance tests during development

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

This isn't really a method but just something I found in the String class source:

// The Empty constant holds the empty string value.
// We need to call the String constructor so that the compiler doesn't mark this as a literal.
// Marking this as a literal would mean that it doesn't show up as a field which we can access 
// from native.
public static readonly String Empty = "";
link|flag
vote up 13 vote down

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