Mono.Documentation.MDocToHtmlConverter.DestinationIsNewer C# (CSharp) Méthode

DestinationIsNewer() private static méthode

private static DestinationIsNewer ( string source, string dest ) : bool
source string
dest string
Résultat bool
	private static bool DestinationIsNewer (string source, string dest)
	{
		return !opts.forceUpdate && File.Exists (dest) &&
			File.GetLastWriteTime (source) < File.GetLastWriteTime (dest);
	}