PurplePen.PunchPattern.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : object
return object
        public object Clone()
        {
            PunchPattern n = new PunchPattern();
            n.size = size;
            n.dots = (bool[,]) dots.Clone();
            return n;
        }
    }
PunchPattern