ICSharpCode.NRefactory.CSharp.CSharpOutputVisitor.VisitUncheckedExpression C# (CSharp) Метод

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

public VisitUncheckedExpression ( UncheckedExpression uncheckedExpression ) : void
uncheckedExpression UncheckedExpression
Результат void
		public virtual void VisitUncheckedExpression(UncheckedExpression uncheckedExpression)
		{
			StartNode(uncheckedExpression);
			WriteKeyword(UncheckedExpression.UncheckedKeywordRole);
			LPar();
			Space(policy.SpacesWithinCheckedExpressionParantheses);
			uncheckedExpression.Expression.AcceptVisitor(this);
			Space(policy.SpacesWithinCheckedExpressionParantheses);
			RPar();
			EndNode(uncheckedExpression);
		}
CSharpOutputVisitor