CrossUI.GeometryExtensions.XOR C# (CSharp) Method

XOR() public static method

public static XOR ( this _, IGeometry other ) : IGeometry
_ this
other IGeometry
return IGeometry
        public static IGeometry XOR(this IGeometry _, IGeometry other)
        {
            return _.Combine(CombineMode.XOR, other);
        }