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

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -