Scenario:
I have list of Networks Name in Database Table with numbers e.g (1. Facebook, 2. Twitter, 3. MySpace, 4. hi5 ...) and I select one Network from database (e.g 2. Twitter).
What I Did:
string Selected = "12.FaceBook";
int k=3;
string[] myArray = new string[Selected.Length];
for (int i = 0; i < Selected.Length; i++)
{
myArray[i] = Selected[k].ToString();
k++;
}
and sucked how to join myArray and print in
DevComponents.DotNetBar.MessageBoxEx.Show("?");
What I Want:
output as:
"Facebook" or "Twitter" without numbers.