how to cut a string in c#

96

how to cut a string in c# -

string value = "aaa/b/cc/dd/ee";

string[] collection = value.Split('/');

Comments

Submit
0 Comments