Exemple #1
0
 public int codePointAt(int index)
 {
     if ((index < 0) || (index >= value.Length))
     {
         throw new IndexOutOfRangeException();
     }
     return(Character.codePointAtImpl(value, index, value.Length));
 }