Click or drag to resize
Llvm.NET LogoContextCreateConstantString Method (String)

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

Create a constant data string value

Namespace:  Llvm.NET
Assembly:  Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntax
C#
public ConstantDataArray CreateConstantString(
	string value
)

Parameters

value
Type: SystemString
string to convert into an LLVM constant value

Return Value

Type: ConstantDataArray
new ConstantDataArray
Remarks
This converts th string to ANSI form and creates an LLVM constant array of i8 characters for the data without any terminating null character.
See Also