YuriyGuts.RegexBuilder.RegexNodeLookAround.RegexNodeLookAround C# (CSharp) Method

RegexNodeLookAround() public method

public RegexNodeLookAround ( RegexLookAround lookAroundType, RegexNode lookAroundExpression, RegexNode matchExpression ) : System
lookAroundType RegexLookAround
lookAroundExpression RegexNode
matchExpression RegexNode
return System
        public RegexNodeLookAround(RegexLookAround lookAroundType, RegexNode lookAroundExpression, RegexNode matchExpression)
        {
            LookAroundType = lookAroundType;
            LookAroundExpression = lookAroundExpression;
            MatchExpression = matchExpression;
        }