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:
Post a Comment