What are your favorite lesser-known .NET Base Class Library classes and methods?
feedback
|
closed as not constructive by Tim Post♦ Aug 19 '11 at 15:01
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
|
BaseValidator Makes writing Custom validated controls much easier. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
| ||||
|
feedback
|
Gets the path (and name) of the current running application. I have a few related commands at my Blog | ||||
|
feedback
|
|
| ||||
|
feedback
|
|
In line with String.IsNullOrEmpty()..... String.Empty usage:
instead of
| |||||
feedback
|
|
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. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
I found several cases where people were not aware of certain properties of the
| ||||
|
feedback
|
|
System.Xml.XmlConvert contains lots of nice static methods to convert between XSD types and .Net types. | ||||
|
feedback
|
|
System.Environment is one of my favorites. Especially the WorkingSet property (gets the amount of physical memory mapped to the process context). | ||||
|
feedback
|
|
I like to use System.Collections.CaseInsensitiveComparer to compare strings. | ||||
|
feedback
|
|
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
| ||||
|
feedback
|
|
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 | ||||
|
feedback
|
|
This isn't really a method but just something I found in the String class source:
| ||||
|
feedback
|
|
This behavior is documented in the MSDN library. The
| ||||
|
feedback
|
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 | |||||
feedback
|
|
[System.Diagnostics.ConditionalAttribute] - can be used instead of ugly preprocessor directives. For instance:
| ||||
|
feedback
|
|
ToString() method of Object base class is really nice thing. Override it then bring mouse over instance variable in debug time after instance variable created. Don't even need DebuggerDisplay
| ||||
|
feedback
|
|
System.Runtime.InteropServices.RuntimeEnvironment Most notably the GetRuntimeDirectory() method; however, there are several useful methods there.
| ||||
|
feedback
|
Great to compare two strings with possible difference in letter case. | ||||
|
feedback
|
|
Expanding the My Namespace has always been useful to me
| |||||
feedback
|
|
Ignore Attribute on Unit-Tests for ignoring slow performance tests during development | ||||
|
feedback
|
|
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). | ||||
|
feedback
|
|
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. | |||||
feedback
|
|
FormatterServices.GetUninitializedObject Activator.CreateInstance Has someone mentioned above two? | ||||
|
feedback
|
|
I recently discovered the
| ||||
|
feedback
|