Hi
Is there a way to create an extension method for an type ? I only seem to be able to create them for instances.
public static class MyExtensions
{
    public static string Test(this string s)
    {
        return "test";
    }
}
public class Test
{
    static void TestIt()
    {
        string.Test();  // won't compile
        string s = null;
        s.Test();
    }
}