If you need more readibility, just rename it to 'Formats' or 'FormatWith'.
I'd like to clarify that I keep it as a simple "F" because there is least visual clutter when
Don't you want find it more natural to format string in-place, as in the following example:
// with just type "F"Console.WriteLine("At ({0}, {1}) color is {2}".F(src.X, src.Ysome string".F("param") instead of string.Format("some string", color));// with longer "FormatsWith"Console.WriteLine("At ({0}, {1}) color is {2}".FormatsWith(src.X, src.Y, color));I'd even go so far as to say that param")
?For a simple "F" conveys meaning faster than "FormatsWith". The difference between the two statements above, other than 10 more characters to auto-complete... is that to read the statementreadable name, you'd have to try one of these suggestion:
s = "read" the word Hello {0} world {1}!".Fmt("Stack", "FormatsWith" out loud in your head, you can't skip it quickly enough because it has 11 characters. While with a simple Overflow");s = "F", it becomes a passive uninterrupting background noise and allow you to map src.X with Hello {0}, src.Y with 0} world {1}.. right away. It feels more like a language feature than a method call. But that's just me.My point was that what is the first thing you that comes into your mind when you see a curly brace with a number inside 1}!".FormatBy("Stack", "Overflow");s = "Hello {0} and a corresponding parameter on the right?
I believe everyone with some .NET experience will associate it with string.Format first thing. And that is enough readability for me, readability matters more in the grander scheme of your code than just little easily-guessed helper methods.
And there is always the world {1}!".FormatWith("Stack", "Go to definition menuOverflow");s = "that'll confirms, when you have a doubt, with a look at the one simple string.Format statement lying at the destination.
And when you use that as a pattern consistent throughout your code...
But I won't encourage it, if you feels like Hello {0} world {1}!".Display("Stack", "Formats" or Overflow");s = "Injects" or Hello {0} world {1}!".With("Stack", "FormatsWith" would suit you or your team better, then I'd like you to use that.
It's just an idea, you can implement it however you like. Verbosity is another subject to be arguing entirely, if you'd ask meOverflow");
p.s.how do I make this shorter?
