System.MethodExtension.FormatLine C# (CSharp) 메소드

FormatLine() 공개 정적인 메소드

public static FormatLine ( this source ) : string
source this
리턴 string
        public static string FormatLine(this string source, params object[] objects)
        {
            return string.Format(string.Format("{0}{1}", source,Environment.NewLine), objects);
        }