コード例 #1
0
ファイル: Vector.cs プロジェクト: lulzzz/HeuristicLab
 public Vector(Vector other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     vector = new igraph_vector_t();
     DllImporter.igraph_vector_copy(vector, other.NativeInstance);
 }