C# Класс Remotion.Utilities.NullableTypeUtility

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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