Mono.Debugger.Backend.DwarfReader.GetMethod C# (CSharp) Méthode

GetMethod() public méthode

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