Example #1
0
 public Vector(int length)
 {
     if (length < 0)
     {
         throw new ArgumentException("Rows and Columns must be >= 0");
     }
     vector = new igraph_vector_t();
     DllImporter.igraph_vector_init(vector, length);
 }