Expressive.Decompilation.DecompilationContext.DecompilationContext C# (CSharp) Method

DecompilationContext() public method

public DecompilationContext ( IDecompiler decompiler, IManagedMethod method, Expression>.Func getParameter ) : System
decompiler IDecompiler
method IManagedMethod
getParameter Expression>.Func
return System
        public DecompilationContext(IDecompiler decompiler, IManagedMethod method, Func<int, Expression> getParameter)
        {
            this.Decompiler = decompiler;
            this.Method = method;
            this.GetParameter = getParameter;
        }
DecompilationContext