What are your favorite lesser-known .NET Base Class Library classes and methods?
|
189
|
|||||
|
|
|
The Action lambda is a delegate and hence gets the same delegate goodies that regular ones do - such as BeginInvoke():
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. |
|||
|
|
I have to add Exception.GetBaseException(). I can't know how many times I've this code instead:
instead of just:
|
|||
|
|
|
|
[System.Diagnostics.ConditionalAttribute] - can be used instead of ugly preprocessor directives. For instance:
|
|||
|
|
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. |
|||
|
|
|
|
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 |
||||
|
|
|
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 Here's an example I recently did of presenting an interleaved time-lapse view of the data state throughout a group of tasks: |
|||
|
|
If you have a custom MSBuild task in your project that processes a file and subsequently creates
It's introduces a few other annoyances, but it will allow you to have deterministic, correct single builds (a rather important goal). |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
|
|
I found several cases where people were not aware of certain properties of the
|
|||
|
|
|
|
TypeDescriptor when using Windows Forms data binding. This is how BindingSource can pretend to be any other object type. |
|||
|
|
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. |
|||
|
|
|
|
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". |
||||
|
|
|
I don't think it's a hidden feature, but I don't see it used often:
Quite useful when you have a pile of accessor-type functions or something which you don't want to be stepping into while debugging. |
||||||||
|
|
|
Use the
Don't do StartTime with DateTime, and then EndTime with DateTime. See this answer. |
||||
|
|
|
Use this instead of concatenating the 2 strings yourself. |
||||||||||||
|
|
|
I use these built-in delegate types (and their "overloaded" cousins) all the time:
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). |
|||
|
|
|
|
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. |
|||
|
|
|
|
Easy way of making an MD5 or SHA1 hash:
Quick way of generating a unique, temporary file on disk:
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):
If you want to annoy your server admin when he's at the console, add this to your web app :D
|
|||
|
|
|
|
Convert hexadecimal\octal\binary string to decimal:
A great way to convert numbers to byte array:
Or better, use Jon Skeet's MiscUtil for endian bit conversion. |
|||
|
|
I came across this today System.Data.SqlTypes.SqlDateTime it has
among other methods & properties. |
|||
|
|
|
|
System.Net.Mail.MailAddress - no more regexp for server-side email address validation ;) |
|||
|
|
|
|
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. |
|||
|
|
This behavior is documented in the MSDN library. The
|
|||
|
|
|
|
Ignore Attribute on Unit-Tests for ignoring slow performance tests during development |
|||
|
|
|
|
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. |
|||
|
|
This isn't really a method but just something I found in the String class source:
|
|||
|
|
|
|
Tired of typing the unwieldy
? Instead, try one of the properties on the StringComparer class: Instead of the above, you can type:
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
|
|||
|
|
|
|
WeakReference. Extract from here ...
This can be used to implement weak events, see here |
|||
|
|
|
|
In line with String.IsNullOrEmpty()..... String.Empty usage:
instead of
|
||||
|

