Enum CsvBytesArrayFormat
Defines how bytes arrays (for example, Data) should be
presented in CSV. The default value is Decimal.
Namespace: Melanchall.DryWetMidi.Tools
Assembly: Melanchall.DryWetMidi.dll
Syntax
public enum CsvBytesArrayFormat
Fields
Name | Description |
---|---|
Decimal | Bytes should be presented in decimal format. For example, "10 0 123 5" . |
Hexadecimal | Bytes should be presented in hexadecimal format. For example, "0A 00 7B 05" .
Note that each value will be in upper case and will have two digits. |