How to add methods to DataGridView class
my question is simple. How do i add methods to th开发者_JAVA百科e standard DataGridView control of VB.NET
I want to add some methods of my own to the class, but i tried inheritance and i get errors. What are the techniques out there to extend native classes in vb net
You want to use extension methods.
精彩评论