Monobjc.AppKit.NSBezierPath.operator C# (CSharp) Method

operator() public static method

Implements the operator +.
public static operator ( ) : NSBezierPath
return NSBezierPath
        public static NSBezierPath operator +(NSBezierPath path, NSBezierPath otherPath)
        {
            path.AppendBezierPath(otherPath);
            return path;
        }
NSBezierPath