I have an array of string . I want to remove an item from string. HOw i can do this.
string []values = User.Split(';');
Suppose values contains "1","2","3","4"
I want to delete or remove item "2" from values. How i can do this. Is there built in function in C#