YuriyGuts.RegexBuilder.RegexNodeLookAround.RegexNodeLookAround C# (CSharp) Méthode

RegexNodeLookAround() public méthode

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