Files
MileageTraker/Web/Utility/TitleCaseFormatter.cs
T
2012-11-30 21:35:06 -05:00

13 lines
285 B
C#

using System.Globalization;
using AutoMapper;
namespace MileageTraker.Web.Utility
{
public class TitleCaseFormatter : ValueFormatter<string>
{
protected override string FormatValueCore(string value)
{
return CultureInfo.CurrentCulture.TextInfo.ToTitleCase(value);
}
}
}