H
Hetal Shah
It is a C# code.
I have a string like, one||two||three
I want to split it into one, two and three.
string str = "one||two||three";
string[] myStrs = str.Split("||");
This code does not work.
How can I do it?
Yhanks
Hetal
I have a string like, one||two||three
I want to split it into one, two and three.
string str = "one||two||three";
string[] myStrs = str.Split("||");
This code does not work.
How can I do it?
Yhanks
Hetal