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


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

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