Beispiel #1
0
 public override bool Equals(object other)
 {
     if (other is MatrixKozzion <DataType> )
     {
         MatrixKozzion <DataType> other_typed = (MatrixKozzion <DataType>)other;
         return(this == other_typed);//TODO
     }
     else
     {
         return(false);
     }
 }
 public double[,] ToArray2D <DataType>(MatrixKozzion <DataType> matrixKozzion)
 {
     throw new NotImplementedException();
 }