I want to check if an empty string exists in an array after a specified index.
Suppose I have this array:
string[] values = {"1", "2", "2", "4", "", "", ""};
I want to check if an empty value exists from index 3 (where the value is 4). I want to do this without splitting it inter two different arrays of strings.
More specifically my example using an array named files
string[] files;
I want to check from array index 8 to array index 28 if there are any empty values.
ERROR!!you are getting?