Mono.CSharp.CSharpCodeGenerator.OutputFieldScopeModifier C# (CSharp) Méthode

OutputFieldScopeModifier() protected méthode

protected OutputFieldScopeModifier ( MemberAttributes attributes ) : void
attributes MemberAttributes
Résultat void
		protected override void OutputFieldScopeModifier (MemberAttributes attributes)
		{
			switch (attributes & MemberAttributes.ScopeMask) {
				case MemberAttributes.Static:
					Output.Write ("static ");
					break;
				case MemberAttributes.Const:
					Output.Write ("const ");
					break;
			}
		}
CSharpCodeGenerator