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

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

public VisitFixedStatement ( FixedStatement fixedStatement ) : void
fixedStatement FixedStatement
Результат void
		public virtual void VisitFixedStatement(FixedStatement fixedStatement)
		{
			StartNode(fixedStatement);
			WriteKeyword(FixedStatement.FixedKeywordRole);
			Space(policy.SpaceBeforeUsingParentheses);
			LPar();
			Space(policy.SpacesWithinUsingParentheses);
			fixedStatement.Type.AcceptVisitor(this);
			Space();
			WriteCommaSeparatedList(fixedStatement.Variables);
			Space(policy.SpacesWithinUsingParentheses);
			RPar();
			WriteEmbeddedStatement(fixedStatement.EmbeddedStatement);
			EndNode(fixedStatement);
		}
		
CSharpOutputVisitor