SilverFactorial.LoggedTextBox.WriteLine C# (CSharp) Method

WriteLine() public method

public WriteLine ( ) : void
return void
        public void WriteLine()
        {
            if (LogToFile) streamWriter.Write(streamWriter.NewLine);
            AddToBox(Environment.NewLine);
        }

Same methods

LoggedTextBox::WriteLine ( string text ) : void
LoggedTextBox::WriteLine ( string format, string message ) : void

Usage Example

        public static void PrintAppAndSysProps(LoggedTextBox textBox)
        {
            TextWriter writer = textBox.GetStreamWriter();
            var ci = new Microsoft.VisualBasic.Devices.ComputerInfo();

            writer.WriteLine("<<--  Execution Environment Information -->>");
            writer.WriteLine();
            writer.WriteLine("OS-Version              -> {0}", Environment.OSVersion.ToString());
            writer.WriteLine("Runtime                 -> {0}", Environment.Version.ToString());
            writer.WriteLine("Is64BitProcess          -> {0}", Environment.Is64BitProcess);
            writer.WriteLine("Is64BitOperatingSystem  -> {0}", Environment.Is64BitOperatingSystem);
            writer.WriteLine("InstalledUICulture      -> {0}", ci.InstalledUICulture);
            writer.WriteLine("MachineName             -> {0}", Environment.MachineName);
            writer.WriteLine();
            writer.WriteLine("<<-- Application Information -->>");
            writer.WriteLine();
            writer.WriteLine("Application.name        -> Factorial Function Benchmark - C# Gui");
            writer.WriteLine("Application.id          -> Sharit.Application.Factorial");
            writer.WriteLine("Application.title       -> Factorial Function Benchmark");
            writer.WriteLine("Application.version     -> 3.1.20110620");
            writer.WriteLine("Application.vendor      -> Peter Luschny");
            writer.WriteLine("Application.homepage    -> " + @"http://www.Luschny.de/math/factorial/FastFactorialFunctions.htm");
            writer.WriteLine("Application.description -> How fast can we compute the factorial function?");
            writer.WriteLine();
            writer.WriteLine("<<-- Runtime Information -->>");
            writer.WriteLine();
            writer.WriteLine("Processor               -> {0}", ProcessorInfo());
            writer.WriteLine("ProcessorCount          -> {0}", Environment.ProcessorCount.ToString());
            writer.WriteLine("TotalPhysicalMemory     -> {0}", ci.TotalPhysicalMemory);
            writer.WriteLine("TotalVirtualMemory      -> {0}", ci.TotalVirtualMemory);
            writer.WriteLine("AvailablePhysicalMemory	-> {0}", ci.AvailablePhysicalMemory);
            writer.WriteLine("AvailableVirtualMemory	-> {0}", ci.AvailableVirtualMemory);
            writer.WriteLine();
            TimerProperties(writer);
            writer.WriteLine();
            writer.WriteLine("<<-- Use Information -->>");

            textBox.WriteLine();
            DateTimeFormatInfo dateTimeFormat = new CultureInfo("en-US", false).DateTimeFormat;
            DateTime dateTime = DateTime.Now;

            textBox.WriteLine("Application started at {0}", dateTime.ToString("u", dateTimeFormat));
            textBox.WriteLine();
            textBox.WriteLine("Hello {0}, \n \n   welcome to the Factorial Benchmark!", Environment.UserName);
            textBox.WriteLine("\n   For background information visit \n");
            textBox.WriteLine(@"http://www.luschny.de/math/factorial/FastFactorialFunctions.htm");
            textBox.WriteLine();
            textBox.WriteLine("\n   If you want to study the code and are online than click on the green button." );
            textBox.WriteLine();
            textBox.WriteLine("\n   The arithmetic used is MPIR 2.6. Make sure that the library fits your CPU!");
            // textBox.WriteLine("\n\n   Not only the timings also the relative \n   rankings can differ considerably if a \n   different arithmetic (for example \n   BigIntegers from .NET) is used!\n");
            textBox.WriteLine("\n\n   To include your own factorial function into the benchmark edit the file MyFactorial.cs and recompile.");
            textBox.WriteLine();
        }
All Usage Examples Of SilverFactorial.LoggedTextBox::WriteLine