Click or drag to resize
Llvm.NET LogoNativeModuleAsString Method

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

Creates a string representation of the module

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

Return Value

Type: String
LLVM textual representation of the module
Remarks
This is intentionally NOT an override of ToString() as that is used by debuggers to show the value of a type and this can take an extremely long time (up to many seconds depending on complexity of the module) which is bad for the debugger.
See Also