BuildReportTool.BuildInfo.GetTimeReadable C# (CSharp) Method

GetTimeReadable() public method

public GetTimeReadable ( ) : string
return string
        public string GetTimeReadable()
        {
            if (!string.IsNullOrEmpty(TimeGotReadable))
            {
            return TimeGotReadable;
            }
            return TimeGot.ToString(BuildReportTool.ReportManager.TIME_OF_BUILD_FORMAT);
        }