Microsoft.Scripting.Actions.MethodTracker.MethodTracker C# (CSharp) Method

MethodTracker() private method

private MethodTracker ( MethodInfo method ) : System.Linq.Expressions
method System.Reflection.MethodInfo
return System.Linq.Expressions
        internal MethodTracker(MethodInfo method) {
            ContractUtils.RequiresNotNull(method, "method");
            _method = method;
            _isStatic = method.IsStatic;
        }

Same methods

MethodTracker::MethodTracker ( MethodInfo method, bool isStatic ) : System.Linq.Expressions