6 lines
182 B
C#
6 lines
182 B
C#
namespace EnvelopeGenerator.Web;
|
|
|
|
public static class StringExtensions
|
|
{
|
|
public static string Format(this string st, params object?[] args) => string.Format(st, args: args);
|
|
} |