I want to trim leading whitespace and the single quote using one call to Trim without calling it twice as follows.
string s = " 'hello'"; var newString = s.Trim().Trim('\''); I don't want to use
var newString = s.TrimStart().Trim(''\'). either as it is two calls.
TrimStart