ProtractorTestAdapter.ProtractorTestContainer.GetTimeStamp C# (CSharp) Method

GetTimeStamp() private method

private GetTimeStamp ( ) : System.DateTime
return System.DateTime
        private DateTime GetTimeStamp()
        {
            if (!String.IsNullOrEmpty(this.Source) && File.Exists(this.Source))
            {
                return File.GetLastWriteTime(this.Source);
            }
            else
            {
                return DateTime.MinValue;
            }

        }