How can we acheive inheritance in VB.NET ?
Answers were Sorted based on User's Feedback
Answer / roopesh
class a
inherits b
using this we can do in vb.net and inherits line should be
in next line to the child class as mentioned above...
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / abha mittal
We can achieve inheritence using abstract classes ot making interfaces
Is This Answer Correct ? | 5 Yes | 0 No |
Can you create partial delegates and enumerations?
What are virtual methods? How are they used?
What is dll in vb.net?
How objects are stored in memory?
If we inherit a class do the private variables also get inherited ?
What are All kind of access specifiers for a class and for methods
Is c# an array?
How to include c++ header files in c# components?
What is Co- and Contra-Variance in C#?
Which attribute adorn a test class to be picked up by the NUnit GUI in the NUnit test framework?
Why is ienumerable used?
Can we have private constructor in our class file. When we are trying to create instance for the class will it create or throw error regarding that?