Specifies the size of the a data unit.
Namespace: SharpAssembler.CoreAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public enum DataSize |
| Visual Basic |
|---|
Public Enumeration DataSize |
| Visual C++ |
|---|
public enum class DataSize |
Members
| Member name | Value | Description | |
|---|---|---|---|
| None | 0 | No data size. | |
| Bit8 | 1 | An 8-bit data unit. | |
| Bit16 | 2 | A 16-bit data unit. | |
| Bit32 | 4 | A 32-bit data unit. | |
| Bit64 | 8 | A 64-bit data unit. | |
| Bit80 | 10 | A 80-bit data unit. | |
| Bit128 | 16 | A 128-bit data unit. | |
| Bit256 | 32 | A 256-bit data unit. | |
| GetBitCount | Returns the number of bits representing the specified data size. |