Пример #1
0
 ///<exclude/>
 public bool Equals(Float64MultiArray other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other.layout.Equals(layout) && other.data.SequenceEqual(data));
 }
Пример #2
0
 ///<exclude/>
 public bool Equals(Float64MultiArray other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other.layout.Equals(layout) && other.data.SequenceEqual(data);
 }