CClash.ExtensionMethods.WriteLine C# (CSharp) Méthode

WriteLine() public static méthode

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