of() 공개 정적인 메소드

public static of ( object obj ) : Type
obj object
리턴 Type
예제 #1
0
        //////////////////////////////////////////////////////////////////////////
        // Management
        //////////////////////////////////////////////////////////////////////////

        public static Pod of(object obj)
        {
            return(Type.of(obj).pod());
        }
예제 #2
0
파일: Test.cs 프로젝트: syatanic/fantom
 public void verifyType(object obj, Type t)
 {
     verifyEq(Type.of(obj), t);
 }