What are your favorite lesser-known .NET Base Class Library classes and methods?
|
210
|
|||||
|
|
|
I just found:
Used to encrypt data for the current user or the local machine. |
|||
|
|
|
|
System.Web.UI.WebControls.MailDefinition "The MailDefinition class can be used by controls to create a MailMessage object from a text file or a string that contains the body of the e-mail message. Use the MailDefinition class to simplify creating predefined e-mail messages to be sent by a control." |
|||
|
|
|
|
String.Format(). Allows you to get rid of the wonkiness of "This" + " is" + " my favorite " + " Application"; |
||||||||
|
|
|
I'd have to say 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 |
|||
|
|
|
|
System.Diagnostics namespace contains many "hidden" gems. I have used extensively the |
|||
|
|
|
|
Very helpful class to measure performance System.Diagnostics.StopWatch |
|||
|
|
|
|
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. |
||||||||
|
|
|
WeakReference. Extract from here ...
This can be used to implement weak events, see here |
|||
|
|
|
|
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: |
|||
|
|
|
|
System.Linq is saving me a lot of time on Visual Studio 2008. |
|||
|
|
|
|
System.Text.UTF8Encoding for converting streams. |
|||
|
|
|
|
|
|||
|
|
|
|
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". |
||||
|
|
|
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. |
|||
|
|
|
|
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.
Be careful. The server gc requires more memory. |
|||
|
|
|
|
System.Net.Mail.MailAddress - no more regexp for server-side email address validation ;) |
|||
|
|
|
|
TypeDescriptor when using Windows Forms data binding. This is how BindingSource can pretend to be any other object type. |
||||
|
|
|
BaseValidator Makes writing Custom validated controls much easier. |
|||
|
|
|
|
System.Runtime.InteropServices.Marshal I hate having to do interop, and particularly PInvoke, but there are all kinds of goodies in Marshal for turning function pointers into delegates, and vice versa, turning Win32 error codes into something a little more helpful (often only a little though), and so on. |
|||
|
|
|
|
System.Environment is one of my favorites. Especially the Workingset property. |
|||
|
|
|
|
Gets the path (and name) of the current running application. I have a few related commands at my Blog |
|||
|
|
|
|
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
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:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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 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). |
|||
|
|
|
|
In line with String.IsNullOrEmpty()..... String.Empty usage:
instead of
|
||||
|
|
|
I came across this today System.Data.SqlTypes.SqlDateTime it has
among other methods & properties. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|

