public static void Main()
string source = "Hello, my name is <Enter name>, I'm <Enter age> years old and I like to play <Enter game>";
var result = System.Text.RegularExpressions.Regex.Replace(source, "<.*?>", string.Empty);
Console.WriteLine(result);