Gets or sets the boundary to which is aligned.
Namespace: SharpAssembler.Core.InstructionsAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public int Boundary { get; } |
| Visual Basic |
|---|
Public ReadOnly Property Boundary As Integer Get |
| Visual C++ |
|---|
public: property int Boundary { int get (); } |
Field Value
The boundary to align to, which must be a power of two.
Contracts
Get
| Ensures |
|---|
Contract.Result<int>() >= 1 |
MathExt.IsPowerOfTwo(Contract.Result<int>()) |