C# 클래스 Loyc.TypeExt

Extension methods for Type.
파일 보기 프로젝트 열기: qwertie/ecsharp

공개 메소드들

메소드 설명
IsPrimitiveFloat ( this h ) : bool
IsPrimitiveInteger ( this h ) : bool
IsPrimitiveNumeric ( this h ) : bool
NameWithGenericArgs ( this type ) : string

Returns the type with generic parameters in C# style, e.g. typeof(List<List<string>>.NameWithGenericArgs() returns List<List<String>>.

메소드 상세

IsPrimitiveFloat() 공개 정적인 메소드

public static IsPrimitiveFloat ( this h ) : bool
h this
리턴 bool

IsPrimitiveInteger() 공개 정적인 메소드

public static IsPrimitiveInteger ( this h ) : bool
h this
리턴 bool

IsPrimitiveNumeric() 공개 정적인 메소드

public static IsPrimitiveNumeric ( this h ) : bool
h this
리턴 bool

NameWithGenericArgs() 공개 정적인 메소드

Returns the type with generic parameters in C# style, e.g. typeof(List<List<string>>.NameWithGenericArgs() returns List<List<String>>.
public static NameWithGenericArgs ( this type ) : string
type this
리턴 string