string.Format shorthand:
public static class StringExtension
{
public static string F(this string s, params object[] args)
{
return string.Format(s, objects);
}
}
Example:
var s = "The co-ordinate is ({0}, {1})".F(
point.X,
point.Y);