Jul 15, 2004 #1 cogentdev Programmer Jul 15, 2004 5 CA what is the vb.net equivalent of C# virtual classes
Jul 15, 2004 #2 Kris11 Programmer Jan 31, 2003 278 US What do you mean by Virtual Classes? I don't think that you can create Virtual Classes in C#. -Kris Upvote 0 Downvote
Jul 15, 2004 Thread starter #3 cogentdev Programmer Jul 15, 2004 5 CA Sorry, i meant to say virtual methods Upvote 0 Downvote
Jul 16, 2004 #4 Kris11 Programmer Jan 31, 2003 278 US In VB .NET Overridable is the keyword which is equivalent of C# Virtual. You can use this for Functions, Subs, properties etc. Code: Protected Overridable function yourFunction() as integer End function -Kris Upvote 0 Downvote
In VB .NET Overridable is the keyword which is equivalent of C# Virtual. You can use this for Functions, Subs, properties etc. Code: Protected Overridable function yourFunction() as integer End function -Kris