trouble in overriding a method in vb.net -
protected overrides sub dispose(byval disposing boolean) try if disposing = true , components isnot nothing components.dispose() end if mybase.dispose(disposing) end try end sub
error: protected overrides sub dispose(disposing boolean)' has multiple definitions identical signatures.
how can call without raising error ?
the error says have two(or more) dispose methods same signature. try search dispose method in same class, , if same implementation, remove it.
Comments
Post a Comment