Beispiel #1
0
 public override bool Equals(object obj)
 {
     if ((obj == null) || !this.GetType().Equals(obj.GetType()))
     {
         return(false);
     }
     else
     {
         Matrix matrix = (Matrix)obj;
         return(this.ToString() == matrix.ToString());
     }
 }