Tuesday, 3 April 2012

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();

No comments:

Post a Comment

What is ASP.NET? Components of ASP.NET

ASP.Net Definition -It is used for creating web-based applications.ASP.Net is a web development platform provided by Microsoft. ASP.NET i...