How can I remove blank values from an array?
For example:
string[] test={"1","","2","","3"}; <
string[] test={"1","","2","","3"};
I write below code to remove the blank value in the array string.
string[] test={"1","","2","","3"}; test= test.Except(new List { string.Empty }).ToArray();