MonoMac.CoreFoundation.CFString.this C# (CSharp) Method

this() public method

public this ( int p ) : char
p int
return char
        public char this[int p]
        {
            get {
                if (str != null)
                    return str [p];
                else
                    return CFStringGetCharacterAtIndex (handle, p);
            }
        }