Is there any method that removes empty indexes from an array for example
string[] test={"1","","2","","3"};
in this case, is there any method for removing an empty index from an array using C # at the end I want to get an array in this format test={"1","2","3"}; , which means that two indexes are removed from the array, and finally I got 3 indexes I am not the exact code for the array, this is the hint I want to do
c #
Rizwan Shahid Jan 11 2018-12-12T00: 00Z
source share