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

AddVirtualMethod() public method

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