I encountered a couple of places where someone nested Path.Combine and thought we should probably have a rule that guides people to inline them.
so:
var path = Path.Combine(Path.Combine(rootPath, "Foo"), "Bar");
becomes:
var path = Path.Combine(rootPath, "Foo", "Bar");