//public f Method(string name) //{ // //} bool IsA(object o) { return(The.Same(this, o)); }
public static bool IsA <T>(this T source, string stringType) { return(The.Same(source.GetType(), The.Type(stringType))); }