Skip to content

Instantly share code, notes, and snippets.

@kangaroo
Created April 28, 2010 16:31
Show Gist options
  • Save kangaroo/382346 to your computer and use it in GitHub Desktop.
Save kangaroo/382346 to your computer and use it in GitHub Desktop.
static IntPtr java_vm;
[ThreadStatic] static IntPtr env;
static IntPtr Env {
get {
if (env == null) {
get_env_from (java_vm);
}
return env;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment