CFStringGetCharacterAtIndex() private method

private CFStringGetCharacterAtIndex ( IntPtr theString, int idx ) : char
theString System.IntPtr
idx int
return char
Beispiel #1
0
 public char this[int p]
 {
     get
     {
         if (this._str != null)
         {
             return(this._str[p]);
         }
         return(CoreFoundation.CFStringGetCharacterAtIndex(this._handle, p));
     }
 }