What are your favorite lesser-known .NET Base Class Library classes and methods?
|
189
|
|||||
|
|
|
I didn't know about System.Net.WebClient until it was posted in an answer to a question of mine.
|
||||
|
|
|
|
|||
|
|
System.Text.UTF8Encoding for converting streams. |
|||
|
|
|
|
BaseValidator Makes writing Custom validated controls much easier. |
|||
|
|
|
|
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." |
|||
|
|
|
|
For some reason many people don't kow about System.Text.StringBuilder. I couldn't live without it! |
|||
|
|
|
|
This saves a lot of typing on strings:
Also a hidden gem using events; when declaring an event, a nice way to make sure you never need to check if it's null, is by initializing it to an empty anonymous delegate at declaration time:
|
||||||||||||
|
|
|
System.Diagnostics.ConditionalAttribute. It makes the compiler ignore methods or classes that should only be active in certain build profiles. EG:
|
||||||||
|
|
|
Path class. I can't count the times the lack of its usage came up in code-reviews. People tend to go for the string concatenations and sub-stringage instead of using Path.Combine and Path.GetFileNameWithoutExtension, among others. |
|||
|
|
A cool way to log the name of the current method you're in:
|
||||
|
|
|
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.Security.SecureString - More people should be aware of this if their program accepts passwords or passphrases, or stores credit card numbers in memory. SecureString values are stored encrypted (obfuscated, rather), but most importantly, they are never swapped to disk and can be disposed of immediately when you're done with them. They're tricky to use because you can only build them one character at a time (to encourage you to build them by capturing keystrokes as the user types their password), and require three lines of code to recover and then wipe their plain text, but when used properly they can make a program more secure by avoiding the virtual-memory vulnerability.
Edit: At the end of the example the SecureString is converted into a regular managed string, which makes it vulnerable again (be sure to use the try-catch-finally pattern to Zero the string after you're done with it). SecureString's use is in reducing the surface-area of attack by limiting the number of copies the Garbage Collector will make of the value, and reducing the likelihood of being written to the swap file. The .Net framework is gaining more support for SecureStrings that help eliminate the need to decrypt it. The PasswordBox control in WPF stores its value in a SecureString, System.Diagnostics.ProcessStartInfo's Password property takes a SecureString, and so does the constructor for X509Certificate2. Some third party components are beginning to take it as native currency, too. |
||||||||
|
|
|
Most definitely |
|||
|
|
The BitConverter.ToString method is very useful when working with binary data. I use it for debugging, traces and within unit testing. It will take a byte array and return a printable string representation - something like "04-08-01-23-45-67-89-AB-CD-EF". I also use Regex.Split(string, string) for splitting a delimited strings. It is somewhat similar to String.Split(), but using Regex.Split() is much more intuitive: Regex.Split() result string array only contain the data you need, while String.Split() result also contains the delimiters. |
||||
|
|
|
System.Diagnostics namespace contains many "hidden" gems. I have used extensively the |
|||
|
|
|
|
System.Convert is a lot nicer than people think. It's very forgiving on what you put in. Just use Reflector to see how it converts between different types. Ints are defaulted to 0 from bad input, bools to false and so on. It's made int.Parse, bool.Parse and all other .Parse almost obsolete for me. TryParse is still usefull for the most secure parsing. |
|||
|
|
|
|
System.Linq is saving me a lot of time on Visual Studio 2008. |
|||
|
|
|
|
System.Environment is one of my favorites. Especially the Workingset property. |
|||
|
|
|
|
IEnumerable<T> isn't used nearly enough if you ask me. |
||||||||
|
|
|
System.Web.VirtualPathUtility Provides utility methods for common virtual path operations. http://msdn.microsoft.com/en-us/library/system.web.virtualpathutility.aspx
|
|||
|
|
|
|
This is cool. VisualStyleInformation Class provides a lot of information about the current visual style of the operating system. System.Diagnostics.Debugger.Break() is used by virtually everyone but is very convenient for debugging .NET services. NetworkChange.NetworkAvailabilityChanged Event makes it easy to monitor network availability. |
|||
|
|
|
|
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. |
|||
|
|
|
|
TextRenderer.MeasureText() is great for figuring out how large to draw your text. So often I see:
When really all you need is:
The former is how you did it in 1.0 and 1.1; the latter is how you do it in 2.0+. It's much cleaner, doesn't requiring creating an object which must be disposed, and doesn't leave you open to accidentally not disposing of a resource. Plus if you use TextRenderer.DrawText() your text will look better and localize better. This stuff just plain rocks when you're doing custom controls. Edit: On the I18N/G11N front, here's more info: the shaping engines for international text have been updated quite a bit in the Uniscribe subsystem of the Windows operating system, but not in GDI+ subsystem. So sometimes things looked strange/wrong if your .NET app was using the Graphics based method (AKA, GDI+). However, using the TextRenderer approach (AKA, Uniscribe) eliminates these problems and allows you to render text correctly (perfectly?) in the new locales introduced with Windows XP SP2 (such as Bengali and Croatian). (Caveat emptor: I have no idea how or even if either of these methods play with vendor specific extensions to specific code pages.) |
|||
|
|
For generating code files I like System.CodeDom. |
|||
|
|
|
|
Here's a little snippet to tell which class/method the call is coming from. Useful in some special situations:
|
||||
|
|
|
String.Format(). Allows you to get rid of the wonkiness of "This" + " is" + " my favorite " + " Application"; |
||||||||
|
|
|
System.Diagnostics.DebuggerDisplay When you're debugging, if the class is attributed, visual studio will display the information on mouse-over. It even allows you to put in properties of private fields, etc.
Ref: msdn |
|||
|
|
I like to use System.Collections.CaseInsensitiveComparer to compare strings. |
|||
|
|
|
|
TypeConverter classIt saved me a lot of time. And it helped Stack Overflow users to solve their problems: |
|||
|
|
