RecursiveIlFinder.RecursiveIlFinder C# (CSharp) Method

RecursiveIlFinder() public method

public RecursiveIlFinder ( TypeDefinition typeDefinition ) : System.Collections.Generic
typeDefinition TypeDefinition
return System.Collections.Generic
    public RecursiveIlFinder(TypeDefinition typeDefinition)
    {
        this.typeDefinition = typeDefinition;
        Instructions = new List<Instruction>();
        processedMethods = new List<MethodDefinition>();
    }