How to reverse words in a sentence in C# using Visual Studio

preview_player
Показать описание
In this video we create a program that reverses words in a sentence.
- we explain the UI
- we explain process and the logic to reversing words in a sentence
Рекомендации по теме
Комментарии
Автор

Try linq queries it makes life easier. Something to thing about . string inputString = "one two three four five "; //spaces after
string result = string.Join(" ", inputString
.Split(' ')
.Select(x => new

Console.WriteLine(result);

udh
welcome to shbcf.ru