_6_JIT.ASTNode_Lambda.HasFreeVaraible C# (CSharp) Method

HasFreeVaraible() public method

public HasFreeVaraible ( ) : bool
return bool
        public bool HasFreeVaraible()
        {
            return GetFreeAddresses().GetEnumerator().MoveNext();
        }

Usage Example

 private bool HasThisArgument()
 {
     return(mLambdaNode.HasFreeVaraible());
 }