Value Struct

Definition

Used to store primitive values without boxing, and other instances.

public readonly struct Value
type Value = struct
Public Structure Value
Inheritance
Value

Constructors

Value(ArraySegment<Byte>)

TBD.

Value(ArraySegment<Char>)

TBD.

Value(Boolean)

TBD.

Value(Byte)

Stores byte in this value.

Value(Char)

TBD.

Value(DateTime)

TBD.

Value(DateTimeOffset)

TBD.

Value(Double)

TBD.

Value(Int16)

TBD.

Value(Int32)

TBD.

Value(Int64)

TBD.

Value(Nullable<Boolean>)

TBD.

Value(Nullable<Byte>)

Stores nullable byte in this value.

Value(Nullable<Char>)

TBD.

Value(Nullable<DateTime>)

TBD.

Value(Nullable<DateTimeOffset>)

TBD.

Value(Nullable<Double>)

TBD.

Value(Nullable<Int16>)

TBD.

Value(Nullable<Int32>)

TBD.

Value(Nullable<Int64>)

TBD.

Value(Nullable<SByte>)

Stores nullable sbyte in this value.

Value(Nullable<Single>)

TBD.

Value(Nullable<UInt16>)

TBD.

Value(Nullable<UInt32>)

TBD.

Value(Nullable<UInt64>)

TBD.

Value(Object)

Creates instance.

Value(SByte)

Stores sbyte in this value.

Value(Single)

TBD.

Value(UInt16)

TBD.

Value(UInt32)

TBD.

Value(UInt64)

TBD.

Properties

Type

Type of the instance stored in this value.

Methods

As<T>()

TBD.

Create<T>(T)

TBD.

TryGetValue<T>(T)

TBD.

Operators

Explicit(Value to ArraySegment<Byte>)
Explicit(Value to ArraySegment<Char>)
Explicit(Value to Boolean)

TBD.

Explicit(Value to Byte)

Casts value to byte, if possible.

Explicit(Value to Char)

TBD.

Explicit(Value to DateTime)

TBD.

Explicit(Value to DateTimeOffset)

TBD.

Explicit(Value to Decimal)

TBD.

Explicit(Value to Double)

TBD.

Explicit(Value to Int16)

TBD.

Explicit(Value to Int32)

TBD.

Explicit(Value to Int64)

TBD.

Explicit(Value to Nullable<Boolean>)
Explicit(Value to Nullable<Byte>)
Explicit(Value to Nullable<Char>)
Explicit(Value to Nullable<DateTime>)
Explicit(Value to Nullable<DateTimeOffset>)
Explicit(Value to Nullable<Decimal>)
Explicit(Value to Nullable<Double>)
Explicit(Value to Nullable<Int16>)
Explicit(Value to Nullable<Int32>)
Explicit(Value to Nullable<Int64>)
Explicit(Value to Nullable<SByte>)
Explicit(Value to Nullable<Single>)
Explicit(Value to Nullable<UInt16>)
Explicit(Value to Nullable<UInt32>)
Explicit(Value to Nullable<UInt64>)
Explicit(Value to SByte)

Casts value to sbyte, if possible.

Explicit(Value to Single)

TBD.

Explicit(Value to UInt16)

TBD.

Explicit(Value to UInt32)

TBD.

Explicit(Value to UInt64)

TBD.

Implicit(ArraySegment<Byte> to Value)

TBD.

Implicit(ArraySegment<Char> to Value)

TBD.

Implicit(Boolean to Value)

TBD.

Implicit(Byte to Value)

Casts byte to value.

Implicit(Char to Value)

TBD.

Implicit(DateTime to Value)

TBD.

Implicit(DateTimeOffset to Value)

TBD.

Implicit(Decimal to Value)

TBD.

Implicit(Double to Value)

TBD.

Implicit(Int16 to Value)

TBD.

Implicit(Int32 to Value)

TBD.

Implicit(Int64 to Value)

TBD.

Implicit(Nullable<Boolean> to Value)

TBD.

Implicit(Nullable<Byte> to Value)

Casts nullable byte to value.

Implicit(Nullable<Char> to Value)

TBD.

Implicit(Nullable<DateTime> to Value)

TBD.

Implicit(Nullable<DateTimeOffset> to Value)

TBD.

Implicit(Nullable<Decimal> to Value)

TBD.

Implicit(Nullable<Double> to Value)

TBD.

Implicit(Nullable<Int16> to Value)

TBD.

Implicit(Nullable<Int32> to Value)

TBD.

Implicit(Nullable<Int64> to Value)

TBD.

Implicit(Nullable<SByte> to Value)

Casts nullable sbyte to value.

Implicit(Nullable<Single> to Value)

TBD.

Implicit(Nullable<UInt16> to Value)

TBD.

Implicit(Nullable<UInt32> to Value)

TBD.

Implicit(Nullable<UInt64> to Value)

TBD.

Implicit(SByte to Value)

Casts sbyte to value.

Implicit(Single to Value)

TBD.

Implicit(UInt16 to Value)

TBD.

Implicit(UInt32 to Value)

TBD.

Implicit(UInt64 to Value)

TBD.

Applies to