Get rid of space in a snetence c# code example
Example: how to remove white spaces from string in c#
using System.Linq;
// ...
string example = " Hi there! ";
string trimmed = String.Concat(example.Where(c => !Char.IsWhiteSpace(c)));
// Result: "Hithere!"