Say for example I have the following string:
var testString = "Hello, world";
And I want to call the following methods:
var newString = testString.Replace("Hello", "").Replace("world", "");
Is there some code construct that simplifies this, so that I only have to specify the Replace method once, and can specify a bunch of parameters to pass to it in one go?