Mono.Cecil.Tests.CompilationService.TryGetResult C# (CSharp) Méthode

TryGetResult() private méthode

private TryGetResult ( string name, string &file_result ) : bool
name string
file_result string
Résultat bool
		bool TryGetResult (string name, out string file_result)
		{
			file_result = null;
			CompilationResult result;
			if (!files.TryGetValue (name, out result))
				return false;

			if (result.source_write_time != File.GetLastWriteTime (name))
				return false;

			file_result = result.result_file;
			return true;
		}