Computer Language/유니티

int[] a -> System.Array

알 수 없는 사용자 2014. 5. 16. 11:44


  

    int[] array = new int[] {10, 30, 20, 7, 1} ;

print (string.Format("Type of array : {0}", array.GetType()));

print (string.Format("Base Type of array : {0}", array.GetType().BaseType));