Example #1
0
 public T this [int index] {
     get {
         if (index < 0 || index >= Count)
         {
             throw new ArgumentOutOfRangeException("index");
         }
         return(JNIEnv.GetArrayItem <T> (Handle, index));
     }
     set { JNIEnv.SetArrayItem <T> (Handle, index, value); }
 }