[Solved] Print First Letter of Each Word in a Sentence [closed]

[ad_1]

string inputString = "Another One Bites The Dust And Another One Down";
string[] split = inputString.Split();
foreach (string s in split)
{
    Console.Write(s.Substring(0,1));
}

1

[ad_2]

solved Print First Letter of Each Word in a Sentence [closed]