string.Format shorthand:

    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 'Format' or 'FormatWith'.