IsValueType() 공개 정적인 메소드

public static IsValueType ( this type ) : bool
type this
리턴 bool
예제 #1
0
 public static object CreateDefaultValue(Type type)
 {
     return(TypeExtensions.IsValueType(type) ? CreateObject(type) : null);
 }