 | InstructionExtensionsIsVolatileT Method |
[This is preliminary documentation and is subject to change.]
Fluent style extension method to set the Volatile property of a
Load or
Store instruction
Namespace:
Llvm.NET.Instructions
Assembly:
Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntaxpublic static T IsVolatile<T>(
this T self,
bool value
)
where T : Instruction
Parameters
- self
- Type: T
Instruction to set the Volatile property for - value
- Type: SystemBoolean
Flag to indicate if the instruction's operation is volatile
Type Parameters
- T
- Type of the instruction (usually implicitly inferred from usage)
Return Value
Type:
TTo 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