UnityEngine.AndroidJNI.NewObject C# (CSharp) 메소드

NewObject() 공개 정적인 메소드

public static NewObject ( IntPtr clazz, IntPtr methodID, jvalue args ) : IntPtr
clazz System.IntPtr
methodID System.IntPtr
args jvalue
리턴 System.IntPtr
		public static IntPtr NewObject(IntPtr clazz, IntPtr methodID, jvalue[] args){}
		public static IntPtr GetObjectClass(IntPtr obj){}

Usage Example

예제 #1
0
 public static IntPtr NewObject(IntPtr clazz, IntPtr methodID, jvalue[] args)
 {
     try
     {
         return(AndroidJNI.NewObject(clazz, methodID, args));
     }
     finally
     {
         AndroidJNISafe.CheckException();
     }
 }
All Usage Examples Of UnityEngine.AndroidJNI::NewObject
AndroidJNI