System.Tests.StringTests.TestFormatter.Format C# (CSharp) Method

Format() public method

public Format ( string format, object arg, IFormatProvider formatProvider ) : string
format string
arg object
formatProvider IFormatProvider
return string
            public string Format(string format, object arg, IFormatProvider formatProvider)
            {
                return "Test: " + format + ": " + arg;
            }
        }
StringTests.TestFormatter