summaryrefslogtreecommitdiff
path: root/code/common/StringFormatting.cs
blob: 21ae4f95fce1b8c56a1a9ce04795027c8aa88f75 (plain)
1
2
3
4
5
6
7
8
9
10
namespace common
{
    static public class StringFormatting
    {
        static public string format(this string message, params object[] arguments)
        {
            return string.Format(message, arguments);
        }
    }
}