What are your favorite lesser-known .NET Base Class Library classes and methods?
|
189
|
|||||
|
|
|
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 |
|||
|
|
|
|
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'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. |
|||
|
|
|
|
[System.Diagnostics.ConditionalAttribute] - can be used instead of ugly preprocessor directives. For instance:
|
|||
|
|
I found several cases where people were not aware of certain properties of the
|
|||
|
|
|
|
I like to use System.Collections.CaseInsensitiveComparer to compare strings. |
|||
|
|
|
|
Expanding the My Namespace has always been useful to me
|
|||
|
|
MatchEvaluator Delegate: Represents the method that is called each time a regular expression match is found during a Replace method operation. |
|||
|
|
|
|
Ignore Attribute on Unit-Tests for ignoring slow performance tests during development |
|||
|
|
|
|
This behavior is documented in the MSDN library. The
|
|||
|
|
|
|
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
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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). |
|||
|
|
|
|
For generating code files I like System.CodeDom. |
|||
|
|
|
|
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. |
|||
|
|
Great to compare two strings with possible difference in letter case. |
|||
|
|
|
|
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. |
|||
|
|
|
|
This isn't really a method but just something I found in the String class source:
|
|||
|
|
|
|
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. |
|||
|
|
I have to add Exception.GetBaseException(). I can't know how many times I've this code instead:
instead of just:
|
|||
|
|
