13 lines
No EOL
220 B
C#
13 lines
No EOL
220 B
C#
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);
|
|
}
|
|
}
|
|
} |