YuriyGuts.RegexBuilder.RegexNodeLookAround.RegexNodeLookAround C# (CSharp) Метод

RegexNodeLookAround() публичный Метод

public RegexNodeLookAround ( RegexLookAround lookAroundType, RegexNode lookAroundExpression, RegexNode matchExpression ) : System
lookAroundType RegexLookAround
lookAroundExpression RegexNode
matchExpression RegexNode
Результат System
        public RegexNodeLookAround(RegexLookAround lookAroundType, RegexNode lookAroundExpression, RegexNode matchExpression)
        {
            LookAroundType = lookAroundType;
            LookAroundExpression = lookAroundExpression;
            MatchExpression = matchExpression;
        }