I have a program where an array gets its data using string.Split(char[] delimiter). (using \';\' as delimiter.)
Some of the values, though, are null. I.e. the string
Try this:
yourString.Split(new string[] {";"}, StringSplitOptions.RemoveEmptyEntries);