Microsoft.Build.Tasks.GenerateResource.IsFileNewerThan C# (CSharp) Method

IsFileNewerThan() static private method

static private IsFileNewerThan ( string first, string second ) : bool
first string
second string
return bool
		static bool IsFileNewerThan (string first, string second)
		{
			FileInfo finfo_first = new FileInfo (first);
			FileInfo finfo_second = new FileInfo (second);
			return finfo_first.LastWriteTime > finfo_second.LastWriteTime;
		}