示例#1
0
文件: Cocoa.cs 项目: swoolcock/opentk
 public extern static bool SendBool(IntPtr receiver, IntPtr selector, NSOperatingSystemVersion version);
示例#2
0
        public static bool IsOperatingSystemAtLeastVersion(NSOperatingSystemVersion version)
        {
            var processInfo = Cocoa.SendIntPtr(classProcessInfo, selProcessInfo);

            return(Cocoa.SendBool(processInfo, selIsOperatingSystemAtLeastVersion, version));
        }