UnityEngine.AndroidJNI.DeleteGlobalRef C# (CSharp) Method

DeleteGlobalRef() public static method

public static DeleteGlobalRef ( IntPtr obj ) : void
obj System.IntPtr
return void
		public static void DeleteGlobalRef(IntPtr obj){}
		public static IntPtr NewLocalRef(IntPtr obj){}

Usage Example

コード例 #1
0
ファイル: AndroidJNISafe.cs プロジェクト: randomize/VimConfig
 public static void DeleteGlobalRef(IntPtr globalref)
 {
     if (globalref != IntPtr.Zero)
     {
         AndroidJNI.DeleteGlobalRef(globalref);
     }
 }
All Usage Examples Of UnityEngine.AndroidJNI::DeleteGlobalRef
AndroidJNI