2
Answers

usage of Split in C#

string[] data = lines[j].Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries);

Why the new is used above? please can someone explain this.

Answers (2)