Click or drag to resize
Llvm.NET LogoInstructionExtensionsAlignmentT Method

[This is preliminary documentation and is subject to change.]

Fluent style extension method to set the Alignment for an instruction

Namespace:  Llvm.NET.Instructions
Assembly:  Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntax
C#
public static T Alignment<T>(
	this T self,
	uint value
)
where T : Instruction

Parameters

self
Type: T
Instruction to set the Alignment for
value
Type: SystemUInt32
New alignment for the instruction

Type Parameters

T
Type of the instruction (usually implicitly inferred from usage)

Return Value

Type: T
To allow fluent style coding this returns the self parameter

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also