Microsoft.Protocols.TestSuites.Common.Common.FormatCurrentDateTime C# (CSharp) Method

FormatCurrentDateTime() private static method

Format the current timestamp to this format "HHmmss_fff".
private static FormatCurrentDateTime ( ) : string
return string
        private static string FormatCurrentDateTime()
        {
            return DateTime.Now.ToString("HHmmss_ffffff");
        }
Common