UnityEngine.AndroidJNI.GetObjectClass C# (CSharp) Method

GetObjectClass() public static method

public static GetObjectClass ( IntPtr obj ) : IntPtr
obj System.IntPtr
return System.IntPtr
		public static IntPtr GetObjectClass(IntPtr obj){}
		public static bool IsInstanceOf(IntPtr obj, IntPtr clazz){}

Usage Example

コード例 #1
0
 public static IntPtr GetObjectClass(IntPtr ptr)
 {
     try
     {
         return(AndroidJNI.GetObjectClass(ptr));
     }
     finally
     {
         AndroidJNISafe.CheckException();
     }
 }
All Usage Examples Of UnityEngine.AndroidJNI::GetObjectClass
AndroidJNI