CClash.ExtensionMethods.WriteLine C# (CSharp) 메소드

WriteLine() 공개 정적인 메소드

public static WriteLine ( this sb, string fmt ) : void
sb this
fmt string
리턴 void
        public static void WriteLine(this StringBuilder sb, string fmt, params object[] args)
        {
            sb.AppendFormat(fmt, args);
            sb.AppendLine();
        }
ExtensionMethods