How to set string?
char[] delimit = new char[] { ' ' };
string s10 = "Wish U Very Happy Holi In Advance.";
foreach (string substr in s10.Split(delimit))
{
System.Console.WriteLine(substr);
}
Console.ReadKey();
char[] delimit = new char[] { ' ' };
string s10 = "Wish U Very Happy Holi In Advance.";
foreach (string substr in s10.Split(delimit))
{
System.Console.WriteLine(substr);
}
Console.ReadKey();
No comments:
Post a Comment