Skip to content

Instantly share code, notes, and snippets.

@dpethes
Created January 22, 2017 10:17
Show Gist options
  • Save dpethes/4d667c7c1db65890f114f0ccc1833582 to your computer and use it in GitHub Desktop.
Save dpethes/4d667c7c1db65890f114f0ccc1833582 to your computer and use it in GitHub Desktop.
//imgui native:
[DllImport(cimguiLib)]
public static extern byte* igGetVersion();
//imgui
public static unsafe string GetVersion()
{
var version = ImGuiNative.igGetVersion();
int length = 0;
while (version[length] != '\0')
length++;
return System.Text.Encoding.UTF8.GetString(version, length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment