Moved extensions

This commit is contained in:
high 2011-08-02 19:29:15 -04:00
parent c505889f79
commit df196ae632
4 changed files with 19 additions and 2 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TShockAPI
{
public static class StringExt
{
//Can't name it Format :(
public static String SFormat(this String str, params object[] args)
{
return String.Format(str, args);
}
}
}