using System; 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); } } }