Mono.Debugger.Backend.DwarfReader.GetMethod C# (CSharp) Method

GetMethod() public method

public GetMethod ( long handle ) : Method
handle long
return Method
        public Method GetMethod(long handle)
        {
            DwarfTargetMethod method = (DwarfTargetMethod) method_hash [handle];
            if ((method == null) || !method.CheckLoaded ())
                return null;
            return method;
        }