BridgeStack.StringHelpers.FormatWith C# (CSharp) Метод

FormatWith() публичный статический Метод

Replaces the format item in a specified string with the string representations of a corresponding object in a specified array.
public static FormatWith ( this text ) : string
text this A composite format string.
Результат string
        public static string FormatWith(this string text, params object[] args)
        {
            return string.Format(text, args);
        }