c# increase length of array

85

c# increase length of array -

int[] myArray = { 1, 2, 3 };
Array.Resize(ref myArray, 5);

Comments

Submit
0 Comments