What are your favorite lesser-known .NET Base Class Library classes and methods?
|
187
|
|||||
|
|
|
Great to compare two strings with possible difference in letter case. |
|||
|
|
|
|
Gets the path (and name) of the current running application. I have a few related commands at my Blog |
|||
|
|
|
|
I just found:
Used to encrypt data for the current user or the local machine. |
|||
|
|
|
|
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:
|
|||
|
|
|
|
Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed. |
|||
|
|
|
|
and
These allow you to build a connection string in a programmatic way without have to remember the specific syntax. Documentation: DbConnectionStringBuilder on MSDN |
|||
|
|
|
|
http://blogs.msdn.com/bclteam/archive/2006/11/09/introducing-hashset-t-kim-hamilton.aspx |
||||||||||||
|
|
|
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. |
|||
|
|
|
|
Using |
||||
|
|
|
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 |
|||
|
|
|
|
Not really hidden but:
|
|||
|
|
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 |
|||
|
|
|
|
Expanding the My Namespace has always been useful to me
|
|||
|
|
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 |
|||
|
|
|
|
|
|||
|
|
|
|
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.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. |
|||
|
|
|
|
Very helpful class to measure performance System.Diagnostics.StopWatch |
|||
|
|
|
|
MatchEvaluator Delegate: Represents the method that is called each time a regular expression match is found during a Replace method operation. |
|||
|
|
|
|
You can play default windows sounds this way :
|
||||
|
|
|
In line with String.IsNullOrEmpty()..... String.Empty usage:
instead of
|
||||
|
|
|
WeakReference. Extract from here ...
This can be used to implement weak events, see here |
|||
|
|
|
|
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
|
|||
|
|
|
|
This isn't really a method but just something I found in the String class source:
|
|||
|
|
|
|
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. |
|||
|
|
Ignore Attribute on Unit-Tests for ignoring slow performance tests during development |
|||
|
|
|
|
This behavior is documented in the MSDN library. The
|
|||
|
|
|
|
Really useful class is System.Diagnostics.Stopwatch. It saves you from inventing a bicycle every time you need to measure time. It's really helpful when you need to make some time dependent work (perhaps periodic) in some thread. |
|||
|
|
System.Net.Mail.MailAddress - no more regexp for server-side email address validation ;) |
|||
|
|
