예제 #1
0
파일: openo.cs 프로젝트: nathanwblair/openo
    //public f Method(string name)
    //{
    //
    //}

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