UnityEngine.AndroidJNI.NewStringUTF C# (CSharp) Method

NewStringUTF() public static method

public static NewStringUTF ( string bytes ) : IntPtr
bytes string
return System.IntPtr
		public static IntPtr NewStringUTF(string bytes){}
		public static int GetStringUTFLength(IntPtr str){}

Usage Example

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