What are your favorite lesser-known .NET Base Class Library classes and methods?
|
188
|
|||||
|
|
|
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.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.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 |
|||
|
|
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:
|
||||||||||||
|
|
|
A cool way to log the name of the current method you're in:
|
||||
|
|
|
System.Diagnostics.ConditionalAttribute. It makes the compiler ignore methods or classes that should only be active in certain build profiles. EG:
|
||||||||
|
|
|
Using |
||||
|
|
|
Most definitely |
|||
|
|
Getting the list of countries. Useful for populating the drop down box.
ref: http://jdconley.com/blog/archive/2007/09/05/list-of-country-names.aspx#1 |
|||
|
|
|
|
and
These allow you to build a connection string in a programmatic way without have to remember the specific syntax. Documentation: DbConnectionStringBuilder on MSDN |
|||
|
|
|
|
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. |
|||
|
|
|
|
IEnumerable<T> isn't used nearly enough if you ask me. |
||||||||
|
|
|
Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed. |
|||
|
|
|
|
Use the
Don't do StartTime with DateTime, and then EndTime with DateTime. See this answer. |
||||
|
|
|
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.) |
|||
|
|
System.Web.VirtualPathUtility Provides utility methods for common virtual path operations. http://msdn.microsoft.com/en-us/library/system.web.virtualpathutility.aspx
|
|||
|
|
|
|
http://blogs.msdn.com/bclteam/archive/2006/11/09/introducing-hashset-t-kim-hamilton.aspx |
||||||||||||
|
|
|
I didn't know about System.Net.WebClient until it was posted in an answer to a question of mine.
|
||||
|
|
|
|
|||
|
|
Does the simple and common task of getting the MD5 or SHA1 hash of a given string. Since almost every system I have ever written stored password hashes instead of encrypted data or the plaintext, this is a godsend to avoid mucking about with the Crypto stuff. |
|||
|
|
|
|
Use this instead of concatenating the 2 strings yourself. |
||||||||||||
|
|
|
TypeConverter classIt saved me a lot of time. And it helped Stack Overflow users to solve their problems: |
|||
|
|
|
|
Here's a little snippet to tell which class/method the call is coming from. Useful in some special situations:
|
||||
|
|
|
Not really hidden but:
|
|||
|
|
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. |
|||
|
|
|
|
For some reason many people don't kow about System.Text.StringBuilder. I couldn't live without it! |
|||
|
|
|
|
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. |
||||
|
|
|
|
|||
|
|
|
|
Tired of typing the unwieldy
? Instead, try one of the properties on the StringComparer class: Instead of the above, you can type:
Even though it's only slightly shorter, it's nice because it keeps the focus on the two things you're comparing, without the distraction of the
|
|||
|
|
|
|
I just found:
Used to encrypt data for the current user or the local machine. |
|||
|
|
