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

CFArray() static private method

static private CFArray ( ) : System
return System
        static CFArray()
        {
            var handle = Dlfcn.dlopen (Constants.CoreFoundationLibrary, 0);
            if (handle == IntPtr.Zero)
                return;
            try {
                kCFTypeArrayCallbacks_ptr = Dlfcn.GetIndirect (handle, "kCFTypeArrayCallBacks");
            }
            finally {
                Dlfcn.dlclose (handle);
            }
        }

Same methods

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