Enum UserDefinedInstrument
- Namespace
- DatabentoDotNet.Dbn
- Assembly
- DatabentoDotNet.Dbn.dll
Whether the instrument is user-defined.
public enum UserDefinedInstrument : byte
- Extension Methods
Fields
No = 78The instrument is not user-defined.
Yes = 89The instrument is user-defined.
Remarks
Char-valued: each variant's numeric value is its ASCII character code, and that character is
the only wire/text form this type has — there is no separate string representation. Use
ToChar(UserDefinedInstrument) to read it as a char.
Rust marks No as the type's default, but C#'s implicit
default(UserDefinedInstrument) is the zero value (UserDefinedInstrument)0,
which has no name here — reference No explicitly where upstream's default
matters.