Whenever I have local variables in a method, ReSharper suggests to convert them to constants:
// instead of this: var s = \"some string\"; var flags = Bindin
The const keyword tells the compiler that it can be fully evaluated at compile time. There is a performance & memory advantage to this, but it is small.