MyStruct7.MyStruct7 C# (CSharp) Method

MyStruct7() public method

public MyStruct7 ( Int32 i ) : System
i System.Int32
return System
 public MyStruct7(Int32 i)
   {
   iArrFirst = new Int32[i];
   for(int j=0; j<iArrFirst.Length; j++){
   iArrFirst[j] = j + i * j + i + 1000;
   }
   }
}
MyStruct7