AsyncDolls.StringExtensions.Output C# (CSharp) Method

Output() public static method

public static Output ( this value ) : void
value this
return void
        public static void Output(this string value)
        {
            Console.WriteLine(DateTime.Now.ToString("hh:mm:ss:fff") + ": " + value);
        }
    }
StringExtensions