Mono.Debugger.Module.FindLocation C# (CSharp) Метод

FindLocation() публичный Метод

Find the method containing line @line in @source_file, which must be the file's full pathname.
public FindLocation ( string source_file, int line ) : SourceLocation
source_file string
line int
Результат SourceLocation
        public SourceLocation FindLocation(string source_file, int line)
        {
            SourceFile file = FindFile (source_file);
            if (file == null)
                return null;

            return file.FindLine (line);
        }