| Author: Elz 27 Sep 2008 | Member Level: Gold | Rating:  Points: 2 |
Hi
public char[] sep = { '::' };
x = txt1.Value.ToString(); y = x.Split(sep);
|
| Author: Digvijay Singh 27 Sep 2008 | Member Level: Bronze | Rating: Points: 1 |
public char[] sep = { '::' };
string x = txt1.Value.ToString(); string y = x.Split(sep);
|
| Author: puneet 27 Sep 2008 | Member Level: Bronze | Rating: Points: 1 |
String[] a = Convert.ToString(tStr).Split("::");
|