Overload List

  Name Description
Public method Static member FormatWith(String, Object)
Named format string extension method - instead of string.Format("{0} first, {1} second", 3.14, DateTime.Now) the following can be used: string.Format("{pi} first, {date} second", someObj) Formats such as {foo.bar.baz} where baz is a property of bar which is a property of foo are also allowed.
Public method Static member FormatWith(String, IFormatProvider, Object)
Named format string extension method - instead of string.Format("{0} first, {1} second", 3.14, DateTime.Now) the following can be used: string.Format("{pi} first, {date} second", someObj) Formats such as {foo.bar.baz} where baz is a property of bar which is a property of foo are also allowed.
Public method Static member FormatWith(String, IFormatProvider, Object, String)
Named format string extension method - instead of string.Format("{0} first, {1} second", 3.14, DateTime.Now) the following can be used: string.Format("{pi} first, {date} second", someObj) Formats such as {foo.bar.baz} where baz is a property of bar which is a property of foo are also allowed.
Public method Static member FormatWith(String, IFormatProvider, Object, String, Boolean)
Named format string extension method - instead of string.Format("{0} first, {1} second", 3.14, DateTime.Now) the following can be used: string.Format("{pi} first, {date} second", someObj) Formats such as {foo.bar.baz} where baz is a property of bar which is a property of foo are also allowed.
Public method Static member FormatWith(String, IFormatProvider, Object, String, Char, Char)
Named format string extension method - instead of string.Format("{0} first, {1} second", 3.14, DateTime.Now) the following can be used: string.Format("{pi} first, {date} second", someObj) Formats such as {foo.bar.baz} where baz is a property of bar which is a property of foo are also allowed.
Public method Static member FormatWith(String, IFormatProvider, Object, String, Char, Char, Boolean)
Named format string extension method - instead of string.Format("{0} first, {1} second", 3.14, DateTime.Now) the following can be used: string.Format("{pi} first, {date} second", someObj) Formats such as {foo.bar.baz} where baz is a property of bar which is a property of foo are also allowed.

See Also