public bool IsShapeEqual(DataShape shape2) { var result = true; if (this.Width != shape2.Width || this.Height != shape2.Height || this.NumberOfDimensions != shape2.NumberOfDimensions) { result = false; } return(result); }
internal DataShape Clone() { var dataShape = new DataShape(this.NumberOfDimensions, this.Width, this.Height); return(dataShape); }