Substring replacement in C#

var startString = "3, 2, 1, go!";
startString = startString.Replace("1""one").
Replace("2""two").Replace("3""three");
//startString = "three, two, one, go!"