Smartmobili.Cocoa.NSObjectDecoder.DecodePointForKey C# (CSharp) Method

DecodePointForKey() public method

public DecodePointForKey ( string keyName ) : NSPoint
keyName string
return NSPoint
        public NSPoint DecodePointForKey(string keyName)
        {
            NSPoint nsPoint = new NSPoint();

            XElement xElm = _classDict.Find(i => (string)i.Attribute("key") == keyName);
            if (xElm != null)
            {
                nsPoint = (NSPoint)(NSString)this.Create(xElm);
            }

            return nsPoint;
        }