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

Example #1
0
 public static void DeleteGlobalRef(IntPtr globalref)
 {
     if (globalref != IntPtr.Zero)
     {
         AndroidJNI.DeleteGlobalRef(globalref);
     }
 }
All Usage Examples Of UnityEngine.AndroidJNI::DeleteGlobalRef
AndroidJNI