2
Answers

usage of Split in C#

Photo of D G

D G

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

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

Answers (2)