A R# inspection of my solution told me "'Local variable 'fs' is never used'" about this line:
var fs = new FormatString();
Okay, then; just get rid of the whole shebang, right?
Instead, R#'s action was to remove just the var declaration and assignment, leaving:
new FormatString();
To my chaprise (chagrined surprise), it compiles!
But does it make any kind of sense?