///<exclude/> public bool Equals(Int16MultiArray other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(other.layout.Equals(layout) && other.data.SequenceEqual(data)); }
///<exclude/> public bool Equals(Int16MultiArray other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return other.layout.Equals(layout) && other.data.SequenceEqual(data); }