Well, here you go, it's my implementation of a FormattableObject that I mentioned earlier. Take a look at the comments, Mark Miller had some great ideas, the best of which being a CodeRush plugin that handles the static analysis at design time and makes it harder to mess up these strings.
You can do this:
[Test]
public void MakePersonFormattedStringWithFormat()
{
Person p = new Person();
string foo = p.ToString("{BirthDate:D} My name is {FirstName} {LastName} and I'm cool.");
Assert.AreEqual("Tuesday, January 22, 1974 My name is Scott Hanselman and I'm cool.", foo);
}
or
[Test]
public void MakePersonFormattedStringWithFormatAndChineseCulture()
{
Person p = new Person();
string foo = p.ToString("{BirthDate:D} My name is {FirstName} {LastName} and I'm cool.",new System.Globalization.CultureInfo("zh-cn"));
Assert.AreEqual("1974?1?22? My name is Scott Hanselman and I'm cool.", foo);
}
You can either:
- Derive your objects from FormattableObject and you get these ToString implementations for free
or
- Implement a few ToString's and IFormattable yourself and delegate over to the static implementations in FormattableObject:
public string ToString(string format, System.IFormatProvider formatProvider)
{
return Corillian.Voyager.Common.ObjectFormatString.ToString(this,format,formatProvider);
}
public string ToString(string format)
{
return this.ToString(format,null);
}
Here you go, enjoy. If you don't, screw you. If you do, I take full credit.
FormattableObject 0.5 (11kb)
Tracked by:
"ObjectToString()" (VBASPCoder.com(日本語版)) [Trackback]
"The DebuggerDisplayAttribute in Visual Studio 2005 and IFormattable" (ComputerZ... [Trackback]
" Aggregated reflection-based ToString() implementation" (.Net Adventures ) [Trackback]
http://ianwhite.is-a-geek.net/PermaLink.aspx?guid=68ae51dd-d60a-48ea-9cd6-ac0e08... [Pingback]
"Better String.Format" (AGBlog) [Trackback]