I have the following problem with this .NET C# application.
I have this string array:
string[] uorsList = uors.Split(';');
Sometimes this array contains an element corresponding to the empty string ("").
What is a smart way to remove all the element that are empty string from this uorsList array?
string[] uorsList = uors.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries);string.Splitis already available...string.Split.