What are your favorite lesser-known .NET Base Class Library classes and methods?
|
188
|
|||||
|
|
|
You can play default windows sounds this way :
|
||||
|
|
|
MatchEvaluator Delegate: Represents the method that is called each time a regular expression match is found during a Replace method operation. |
|||
|
|
|
|
Very helpful class to measure performance System.Diagnostics.StopWatch |
|||
|
|
|
|
System.Runtime.Remoting.Proxies.RealProxy. This class is pretty esoteric and normally only used in weird remoting scenarios; however, I have used it for the ability to dynamically implement an interface. It is also used by some mocking frameworks for the same purpose. See also Extending RealProxy. |
|||
|
|
|
|
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. |
|||
|
|
|
|||
|
|
|
|
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 |
|||
|
|
|
|
Expanding the My Namespace has always been useful to me
|
|||
|
|
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 |
|||
|
|
|
|
Not really hidden but:
|
|||
|
|
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 |
|||
|
|
|
|
Using |
||||
|
|
|
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. |
|||
|
|
|
|
http://blogs.msdn.com/bclteam/archive/2006/11/09/introducing-hashset-t-kim-hamilton.aspx |
||||||||||||
|
|
|
and
These allow you to build a connection string in a programmatic way without have to remember the specific syntax. Documentation: DbConnectionStringBuilder on MSDN |
|||
|
|
|
|
Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed. |
|||
|
|
|
|
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:
|
|||
|
|
|
|
I just found:
Used to encrypt data for the current user or the local machine. |
|||
|
|
|
|
Gets the path (and name) of the current running application. I have a few related commands at my Blog |
|||
|
|
|
|
Great to compare two strings with possible difference in letter case. |
|||
|
|
|
|
TypeConverter classIt saved me a lot of time. And it helped Stack Overflow users to solve their problems: |
|||
|
|
|
|
I like to use System.Collections.CaseInsensitiveComparer to compare strings. |
|||
|
|
|
|
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 |
|||
|
|
String.Format(). Allows you to get rid of the wonkiness of "This" + " is" + " my favorite " + " Application"; |
||||||||
|
|
|
Here's a little snippet to tell which class/method the call is coming from. Useful in some special situations:
|
||||
|
|
|
For generating code files I like System.CodeDom. |
|||
|
|
|
|
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.) |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
