Cocoa.Dictionary.Dictionary C# (CSharp) Method

Dictionary() public method

public Dictionary ( string key, Object native_object ) : System
key string
native_object Object
return System
        public Dictionary(string key, Object native_object)
            : base()
        {
            String s = new String (key);
                        NativeObject = (IntPtr)ObjCMessaging.objc_msgSend (NativeClass.ToIntPtr (), "dictionaryWithObject:forKey:", typeof (IntPtr), typeof (IntPtr), native_object.NativeObject, typeof (IntPtr), s.NativeObject);
        }

Same methods

Dictionary::Dictionary ( ) : System
Dictionary::Dictionary ( IntPtr native_object ) : System
Dictionary