/*
Copyright (C) 2014-2019 de4dot@gmail.com
This file is part of dnSpy
dnSpy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dnSpy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with dnSpy. If not, see .
*/
namespace dnSpy.Contracts.Hex {
///
/// Hex bytes display format
///
public enum HexValuesDisplayFormat {
///
/// Hex,
///
HexByte,
///
/// Hex,
///
HexUInt16,
///
/// Hex,
///
HexUInt32,
///
/// Hex,
///
HexUInt64,
///
/// Hex,
///
HexSByte,
///
/// Hex,
///
HexInt16,
///
/// Hex,
///
HexInt32,
///
/// Hex,
///
HexInt64,
///
/// Decimal,
///
DecimalByte,
///
/// Decimal,
///
DecimalUInt16,
///
/// Decimal,
///
DecimalUInt32,
///
/// Decimal,
///
DecimalUInt64,
///
/// Decimal,
///
DecimalSByte,
///
/// Decimal,
///
DecimalInt16,
///
/// Decimal,
///
DecimalInt32,
///
/// Decimal,
///
DecimalInt64,
///
///
///
Single,
///
///
///
Double,
///
/// 8 bits
///
Bit8,
///
/// Hex, , Big Endian
///
HexUInt16BigEndian,
///
/// Hex, , Big Endian
///
HexUInt32BigEndian,
///
/// Hex, , Big Endian
///
HexUInt64BigEndian,
///
/// Hex, , Big Endian
///
HexInt16BigEndian,
///
/// Hex, , Big Endian
///
HexInt32BigEndian,
///
/// Hex, , Big Endian
///
HexInt64BigEndian,
///
/// Decimal, , Big Endian
///
DecimalUInt16BigEndian,
///
/// Decimal, , Big Endian
///
DecimalUInt32BigEndian,
///
/// Decimal, , Big Endian
///
DecimalUInt64BigEndian,
///
/// Decimal, , Big Endian
///
DecimalInt16BigEndian,
///
/// Decimal, , Big Endian
///
DecimalInt32BigEndian,
///
/// Decimal, , Big Endian
///
DecimalInt64BigEndian,
///
/// , Big Endian
///
SingleBigEndian,
///
/// , Big Endian
///
DoubleBigEndian,
}
}