예제 #1
0
 public Matrix(Matrix other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     matrix = new igraph_matrix_t();
     DllImporter.igraph_matrix_copy(matrix, other.NativeInstance);
 }