C# 클래스 Remotion.Utilities.NullableTypeUtility

파일 보기 프로젝트 열기: re-motion/Relinq-SqlBackend 1 사용 예제들

공개 메소드들

메소드 설명
GetBasicType ( Type type ) : Type
GetNullableType ( Type type ) : Type
IsNullableType ( Type type ) : bool

Determines whether a type is nullable, ie. whether variables of it can be assigned .

A type is nullable if it is a reference type or a nullable value type. This method returns false only for non-nullable value types.

비공개 메소드들

메소드 설명
IsNullableType_NoArgumentCheck ( Type expectedType ) : bool

메소드 상세

GetBasicType() 공개 정적인 메소드

public static GetBasicType ( Type type ) : Type
type System.Type
리턴 System.Type

GetNullableType() 공개 정적인 메소드

public static GetNullableType ( Type type ) : Type
type System.Type
리턴 System.Type

IsNullableType() 공개 정적인 메소드

Determines whether a type is nullable, ie. whether variables of it can be assigned .
A type is nullable if it is a reference type or a nullable value type. This method returns false only for non-nullable value types.
public static IsNullableType ( Type type ) : bool
type System.Type The type to check.
리턴 bool