of() public static method

public static of ( object obj ) : Type
obj object
return Type
Ejemplo n.º 1
0
        //////////////////////////////////////////////////////////////////////////
        // Management
        //////////////////////////////////////////////////////////////////////////

        public static Pod of(object obj)
        {
            return(Type.of(obj).pod());
        }
Ejemplo n.º 2
0
 public void verifyType(object obj, Type t)
 {
     verifyEq(Type.of(obj), t);
 }