Boo.Lang.Compiler.TypeSystem.BooClassBuilder.AddPublicField C# (CSharp) 메소드

AddPublicField() 공개 메소드

public AddPublicField ( string name, IType type ) : Boo.Lang.Compiler.Ast.Field
name string
type IType
리턴 Boo.Lang.Compiler.Ast.Field
        public Field AddPublicField(string name, IType type)
        {
            return AddField(name, type, TypeMemberModifiers.Public);
        }