System.Tests.StringTests.TestFormatter.Format C# (CSharp) 메소드

Format() 공개 메소드

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