Mono.CSharp.CSharpCodeGenerator.OutputFieldScopeModifier C# (CSharp) Method

OutputFieldScopeModifier() protected method

protected OutputFieldScopeModifier ( MemberAttributes attributes ) : void
attributes MemberAttributes
return 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