2D Array Trim
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi friends, I have two 2 Dimensional string array.I want to trim the null values in the array. coz i can't initialize the array length. like Function Getarray(string[,] str) { } by default this array has 250 items even if i pass 12 items. str[i,4] here row no should be varied how can i trim the null values
-
Hi friends, I have two 2 Dimensional string array.I want to trim the null values in the array. coz i can't initialize the array length. like Function Getarray(string[,] str) { } by default this array has 250 items even if i pass 12 items. str[i,4] here row no should be varied how can i trim the null values
Then why use an array? Why not a List?