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

CFString() public method

public CFString ( string str ) : System
str string
return System
        public CFString(string str)
        {
            if (str == null)
                throw new ArgumentNullException ("str");

            handle = CFStringCreateWithCharacters (IntPtr.Zero, str, str.Length);
            this.str = str;
        }

Same methods

CFString::CFString ( IntPtr handle ) : System
CFString::CFString ( IntPtr handle, bool owns ) : System