up vote 227 down vote favorite
314
share [g+] share [fb]

What are your favorite lesser-known .NET Base Class Library classes and methods?

link|improve this question
9  
Great question! The framework is so expansive that a lot of times one doesn't think to look (or doesn't know where to look) to the framework to achieve common (and sometimes not so common) tasks. – Giovanni Galbo Sep 24 '08 at 2:13
4  
Super-useful question! I found some really cool stuffs here. – aku Sep 24 '08 at 9:24
show 3 more comments
feedback

closed as not constructive by Tim Post Aug 19 '11 at 15:01

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

88 Answers

1 2 3

BaseValidator Makes writing Custom validated controls much easier.

link|improve this answer
feedback

My favorite hidden feature is the SDK. OK, not very hidden, for some people, but most people seem to be able to develop .NET applications only with a tool or IDE, like Visual Studio. The SDK is free, and for small applications it's way quicker for me to write them up in emacs and then just build them with the command line compilers, csc.exe or vbc.exe.

Plus all the SDK tools are handy, too. XML Schema Definition Tool (xsd.exe), Strong Name Tool (sn.exe), and many others.

link|improve this answer
feedback

Membership.GeneratePassword() (msdn) will generate a secure temporary password for you.

link|improve this answer
feedback
System.Reflection.Assembly.GetExecutingAssembly.Location

Gets the path (and name) of the current running application.

I have a few related commands at my Blog

link|improve this answer
feedback

In line with String.IsNullOrEmpty().....

String.Empty

usage:

string s = String.Empty;
//OR
string s = string.Empty;

instead of

string s = "";
link|improve this answer
3  
public static readonly String Empty = ""; :) – Chris S Mar 27 '09 at 13:40
feedback

System.Security.SecurityElement.Escape

Escapes XML entities from a string so you can use it within an XML element. It's used by the framework in generation WS-Security XML, but saves four string replace statements in your own code.

link|improve this answer
feedback

The Managed, Native, and COM Interop Team at CodePlex have released a modified, open source TlbImp tool that allows simple creation of customized wrappers for pesky COM libraries.

link|improve this answer
feedback

I found several cases where people were not aware of certain properties of the Environment class. In particular, I cleaned up several places in code and changed it to:

link|improve this answer
feedback

System.Xml.XmlConvert contains lots of nice static methods to convert between XSD types and .Net types.

link|improve this answer
feedback

System.Environment is one of my favorites. Especially the WorkingSet property (gets the amount of physical memory mapped to the process context).

link|improve this answer
feedback

I like to use System.Collections.CaseInsensitiveComparer to compare strings.

link|improve this answer
feedback

Easy way of making an MD5 or SHA1 hash:

string hash = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("string to hash", "MD5");

Quick way of generating a unique, temporary file on disk:

string tempFilePath = System.IO.Path.GetTempFileName();

The System.Web.VirtualPathUtility class also has some interesting methods for manipulating file paths.

Parse an enum into a string array in one line (eg. get all known colours from KnowColor enumeration into an array):

string[] colours = System.Enum.GetNames(typeof(System.Drawing.KnownColor));

If you want to annoy your server admin when he's at the console, add this to your web app :D

System.Media.SystemSounds.Exclamation.Play();
link|improve this answer
feedback

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

link|improve this answer
feedback

This isn't really a method but just something I found in the String class source:

// The Empty constant holds the empty string value.
// We need to call the String constructor so that the compiler doesn't mark this as a literal.
// Marking this as a literal would mean that it doesn't show up as a field which we can access 
// from native.
public static readonly String Empty = "";
link|improve this answer
feedback

Decimal preserves trailing zeros :

decimal x = 1.0m;
decimal y = 1.00m;
decimal z = 1m;

Assert.IsTrue(x == y);
Assert.IsFalse(x.ToString() == y.ToString());

Assert.AreEqual("1.0", x.ToString(CultureInfo.InvariantCulture));
Assert.AreEqual("1.00", y.ToString(CultureInfo.InvariantCulture));
Assert.AreEqual("1", z.ToString(CultureInfo.InvariantCulture));

Assert.AreEqual("1.000", (x*y).ToString(CultureInfo.InvariantCulture));

This behavior is documented in the MSDN library.

The decimal.Parse method keeps track of trailing zeros too :

decimal x= decimal.Parse("1.0", CultureInfo.InvariantCulture);
decimal y= decimal.Parse("1.00", CultureInfo.InvariantCulture);

Assert.AreEqual("1.0", x.ToString(CultureInfo.InvariantCulture));
Assert.AreEqual("1.00", y.ToString(CultureInfo.InvariantCulture));
link|improve this answer
feedback
Microsoft.VisualBasic.IsNumeric(object)

Despite being in the Microsoft.VisualBasic.dll assembly, this method can be called by C# just as easily and can quickly let you know if the object being tested can be evaluated as a number.

Related to it are the various TryParse() methods, which attempt to evaluate an object as a number but don't raise exceptions if the call fails... These can be found under a variety of different types such as System.Int32 and System.DateTime

link|improve this answer
1  
You brought me back to my old VB6 days – HuBeZa Aug 26 '09 at 7:42
show 1 more comment
feedback

[System.Diagnostics.ConditionalAttribute] - can be used instead of ugly preprocessor directives. For instance:

[Conditional("DEBUG")]
public void Validate()
{
    // ...
}
link|improve this answer
show 2 more comments
feedback

ToString() method of Object base class is really nice thing. Override it then bring mouse over instance variable in debug time after instance variable created. Don't even need DebuggerDisplay

class Program
{

    string name;
    string surname;
    static void Main(string[] args)
    {
        Program instance = new Program() { name = "James", surname = "hetfield" };
        Console.ReadKey();
    }
    public override string ToString()
    {
        return string.Format("name is {0}, surname is {1}",name,surname);
    }
}
link|improve this answer
show 1 more comment
feedback

System.Runtime.InteropServices.RuntimeEnvironment

Most notably the GetRuntimeDirectory() method; however, there are several useful methods there.

    // Show whether the EXE assembly was loaded from the GAC or from a private subdirectory.
    Console.WriteLine("Did the {0} assembly load from the GAC? {1}",
       Assembly.GetExecutingAssembly(),
       RuntimeEnvironment.FromGlobalAccessCache(Assembly.GetExecutingAssembly()));
    // Show the path where the CLR was loaded from.
    Console.WriteLine("Runtime directory: {0}", 
       RuntimeEnvironment.GetRuntimeDirectory());
    // Show the CLR's version number.
    Console.WriteLine("System version: {0}", 
       RuntimeEnvironment.GetSystemVersion());
    // Show the path of the machine's configuration file.
    Console.WriteLine("System configuration file: {0}", 
       RuntimeEnvironment.SystemConfigurationFile);
link|improve this answer
feedback
public static int Compare(string strA, string strB, bool ignoreCase)

Great to compare two strings with possible difference in letter case.

link|improve this answer
feedback

Expanding the My Namespace has always been useful to me

Namespace My

    <Global.Microsoft.VisualBasic.HideModuleName()> _
    Friend Module MyStuff
        Sub Foo()

        End Sub
    End Module

End Namespace
link|improve this answer
2  
In what way has it been useful to you? – Peter Mortensen Sep 29 '09 at 14:50
feedback

Ignore Attribute on Unit-Tests for ignoring slow performance tests during development

link|improve this answer
feedback

If you have a custom MSBuild task in your project that processes a file and subsequently creates .cs files to include in the same build, changes to the source file of the transformation often won't show in debugging without building twice. When you are generating a single file based solely on the content of a single source file, this task is best solved with a SingleFileGenerator. For multiple inputs and/or outputs, you may be stuck with an MSBuild task. In this case you can fix Visual Studio's dependency analysis by adding the following to your .csproj file:

<PropertyGroup>
  <UseHostCompilerIfAvailable>False</UseHostCompilerIfAvailable>
</PropertyGroup>

It's introduces a few other annoyances, but it will allow you to have deterministic, correct single builds (a rather important goal).

link|improve this answer
feedback

For generating code files I like System.CodeDom.

link|improve this answer
feedback

The Action lambda is a delegate and hence gets the same delegate goodies that regular ones do - such as BeginInvoke():

new Action(() => MethodIWantToRunAsychronously())
  .BeginInvoke(new AsyncCallback(x => ThingToDoWhenMethodReturns()), null);

What it does: Spawns a new thread and runs MethodIWantToRunAsychronously() on it while your continuing to execute the current method on the current thread. When MethodIWantToRunAsychronously completes, ThingToDoWhenMethodReturns() is called (still) on the new thread.

link|improve this answer
9  
It leaks memory. You MUST call EndInvoke. If you just want fire-and-forget, call ThreadPool.QueueUserWorkItem(() => SomeMethod()); – SLaks Mar 19 '10 at 1:12
show 3 more comments
feedback

FormatterServices.GetUninitializedObject Activator.CreateInstance

Has someone mentioned above two?

link|improve this answer
show 1 more comment
feedback

I recently discovered the ProtectedData and ProtectedMemory classes, which allow you to use the Data Protection API from .NET. It's a nice way to encrypt user credentials for storage in applications that need to authenticate on a remote server.

public static string EncryptPassword(string password, byte[] optionalEntropy = null)
{
    byte[] clearTextBytes = Encoding.UTF8.GetBytes(password);
    byte[] encryptedBytes = ProtectedData.Protect(clearTextBytes, optionalEntropy, DataProtectionScope.CurrentUser);
    return Convert.ToBase64String(encryptedBytes);
}

public static string DecryptPassword(string encryptedPassword, byte[] optionalEntropy = null)
{
    byte[] encryptedBytes= Convert.FromBase64String(encryptedPassword);
    byte[] clearTextBytes = ProtectedData.Unprotect(encryptedBytes, optionalEntropy, DataProtectionScope.CurrentUser);
    return Encoding.UTF8.GetString(clearTextBytes);
}
link|improve this answer
feedback
1 2 3

Not the answer you're looking for? Browse other questions tagged or ask your own question.