How the virtual functions in VB.NET are called?
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Please, does anyone know how the virtual functions are called in VB.NET? I'm very surprised the language uses it's own words, despite of common naming conventions. Now I have a serious problem: how should I mark the function to make it virtual. Thanks Vasek VB6, C#, MS DNA, MS .NET software developer
-
Please, does anyone know how the virtual functions are called in VB.NET? I'm very surprised the language uses it's own words, despite of common naming conventions. Now I have a serious problem: how should I mark the function to make it virtual. Thanks Vasek VB6, C#, MS DNA, MS .NET software developer
e.g., Public Overridable Sub MyMethod() End Sub Then use Public Overrides Sub MyMethod() End Sub in the Derived class Kevin