What are your favorite lesser-known .NET Base Class Library classes and methods?
|
187
|
|||||
|
|
|
System.Web.VirtualPathUtility Provides utility methods for common virtual path operations. http://msdn.microsoft.com/en-us/library/system.web.virtualpathutility.aspx
|
|||
|
|
|
|
IEnumerable<T> isn't used nearly enough if you ask me. |
||||||||
|
|
|
System.Environment is one of my favorites. Especially the Workingset property. |
|||
|
|
|
|
System.Linq is saving me a lot of time on Visual Studio 2008. |
|||
|
|
|
|
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.Diagnostics namespace contains many "hidden" gems. I have used extensively the |
|||
|
|
|
|
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. |
||||
|
|
|
Most definitely |
|||
|
|
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. |
||||||||
|
|
|
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. |
|||
|
|
|
|
A cool way to log the name of the current method you're in:
|
||||
|
|
|
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. |
|||
|
|
System.Diagnostics.ConditionalAttribute. It makes the compiler ignore methods or classes that should only be active in certain build profiles. EG:
|
||||||||
|
|
|
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:
|
||||||||||||
|
|
|
For some reason many people don't kow about System.Text.StringBuilder. I couldn't live without it! |
|||
|
|
|
|
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." |
|||
|
|
|
|
BaseValidator Makes writing Custom validated controls much easier. |
|||
|
|
|
|
System.Text.UTF8Encoding for converting streams. |
|||
|
|
|
|
|
|||
|
|
I didn't know about System.Net.WebClient until it was posted in an answer to a question of mine.
|
||||
|
