Esempio n. 1
0
    //public f Method(string name)
    //{
    //
    //}

    bool IsA(object o)
    {
        return(The.Same(this, o));
    }
Esempio n. 2
0
 public static bool IsA <T>(this T source, string stringType)
 {
     return(The.Same(source.GetType(), The.Type(stringType)));
 }