string.Format shortcut:
public static class StringExtensions
{
// Enable quick and more natural string.Format calls
public static string F(this string s, params object[] args)
{
return string.Format(s, args);
}
}
Example:
var s = "The co-ordinate is ({0}, {1})".F(point.X, point.Y);
If you need more readibility, just rename it to 'Formats' or 'FormatWith'.
For quick copy-and-paste go [here][1].
---
I'd like to clarify that I keep it as a simple "F" because there is least visual clutter when you want to format string in-place, as in the following example:
// with just "F"
Console.WriteLine("At ({0}, {1}) color is {2}".F(src.X, src.Y, 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 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 statement, you'd have to "read" the word "FormatsWith" out loud in your head, you can't skip it quickly enough because it has 11 characters. While with a simple "F", it becomes a passive uninterrupting background noise and allow you to map src.X with {0}, src.Y with {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 {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 "Go to definition menu" 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 "Formats" or "Injects" or "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 me.
p.s. how do I make this shorter?
[1]: http://pastebin.com/f3e2a94d6