System.Net.CFArray.CFArray C# (CSharp) Method

CFArray() static private method

static private CFArray ( ) : System
return System
		static CFArray ()
		{
			var handle = dlopen (CoreFoundationLibrary, 0);
			if (handle == IntPtr.Zero)
				return;

			try {
				kCFTypeArrayCallbacks = GetIndirect (handle, "kCFTypeArrayCallBacks");
			} finally {
				dlclose (handle);
			}
		}

Same methods

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