CCNet.SourceNotifier.XmlProcessor.XmlExporter.ExportTimeSpanDays C# (CSharp) Method

ExportTimeSpanDays() public static method

Converts TimeSpan to string.
public static ExportTimeSpanDays ( System.TimeSpan timeSpan ) : string
timeSpan System.TimeSpan
return string
		public static string ExportTimeSpanDays(TimeSpan timeSpan)
		{
			return ((int)timeSpan.TotalDays).ToString();
		}