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

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

public VisitFixedFieldDeclaration ( FixedFieldDeclaration fixedFieldDeclaration ) : void
fixedFieldDeclaration FixedFieldDeclaration
Результат void
		public virtual void VisitFixedFieldDeclaration(FixedFieldDeclaration fixedFieldDeclaration)
		{
			StartNode(fixedFieldDeclaration);
			WriteAttributes(fixedFieldDeclaration.Attributes);
			WriteModifiers(fixedFieldDeclaration.ModifierTokens);
			WriteKeyword(FixedFieldDeclaration.FixedKeywordRole);
			Space();
			fixedFieldDeclaration.ReturnType.AcceptVisitor(this);
			Space();
			WriteCommaSeparatedList(fixedFieldDeclaration.Variables);
			Semicolon();
			EndNode(fixedFieldDeclaration);
		}
		
CSharpOutputVisitor