+92 332 4229 857 99ProjectIdeas@Gmail.com

String Join Function (C#.net)





Concatenates the strings with a separator between them.



  



For Example:

     string strOne = "Pakistan";
            string strTwo = "a islamic republic state";
            MessageBox.Show(string.Join(" : ", strOne, strTwo));
           
Output:
         Pakistan : a Islamic republic state

0 comments: