Struct TabularRecord<T>
Represents a container that may or may not have a stored object.
public readonly struct TabularRecord<T> where T : notnull
Type Parameters
T
The type of object stored in the container.
Constructors
TabularRecord(T)
Initializes a new instance of the TabularRecord<T> struct with the specified object.
public TabularRecord(T value)
Parameters
value
TThe object to initialize the container with.
Exceptions
- ArgumentNullException
value
is null.