SIL.FieldWorks.Common.RootSites.PrintRootSite.DeltaTime C# (CSharp) Method

DeltaTime() private method

private DeltaTime ( long x1, long x2 ) : string
x1 long
x2 long
return string
		private string DeltaTime(long x1, long x2)
		{
			long delta = x2 - x1;
			long xSec = delta / 10000000;
			long xMilli = (delta / 10000) % 1000;
			return String.Format("{0}.{1:D3}", xSec, xMilli);
		}
#endif