public readonly struct NullableObject<T>
Public Structure NullableObject(Of T)
generic<typename T>
public value class NullableObject
[<SealedAttribute>]
type NullableObject<'T> =
struct
inherit ValueType
end
NullableObjectT | Создаёт экземпляр структуры с указанием заданного значения. Если требуется получить объект без значения, используйте метод Null. |
HasValue | Признак того, что значение объекта задано. |
Value | Значение объекта. Имеет смысл, если HasValue равно true. |
Equals | Indicates whether this instance and a specified object are equal. (Унаследован от ValueType) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Унаследован от Object) |
GetHashCode | Returns the hash code for this instance. (Унаследован от ValueType) |
GetType | Gets the Type of the current instance. (Унаследован от Object) |
MemberwiseClone | Creates a shallow copy of the current Object. (Унаследован от Object) |
Null | Возвращает объект, представляющий незаданное значение, у которого свойство HasValue равно false. |
ToString | Returns the fully qualified type name of this instance. (Унаследован от ValueType) |