Boo.Lang.Compiler.TypeSystem.BooClassBuilder.AddPublicField C# (CSharp) Method

AddPublicField() public method

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