This compiles and executes:
var re = new Regex(@"what\ever");
But I can't find anything that matches it. whatever, what\ever and what\\ever all fail to match.
\e isn't a valid escape sequence AFAIK, so I'm not sure what the intended behaviour here is...