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

AddMethod() public method

public AddMethod ( string name, IType returnType ) : BooMethodBuilder
name string
returnType IType
return BooMethodBuilder
        public BooMethodBuilder AddMethod(string name, IType returnType)
        {
            return AddMethod(name, returnType, TypeMemberModifiers.Public);
        }

Same methods

BooClassBuilder::AddMethod ( string name, IType returnType, TypeMemberModifiers modifiers ) : BooMethodBuilder