... the point is to optimize the stuff that gets run often. Loops, queries, repeated operations. Not one-time inits, or static vs. non-static strings that are used once as in this case.

The profiler will tell you what's taking the most time in the app. Hit the hot spots with the optimizations and you'll get the most return for your time.