Home »
VB.Net »
VB.Net Programs
VB.Net program to demonstrate the interface inheritance
By Nidhi Last Updated : November 11, 2024
Implement interface inheritance in VB.Net
Here, we will create an interface ISample1 and then inherit the ISample1 into the ISample2 interface. After that, we will implement the interface ISample2 inside the Sample class.
Program/Source Code:
The source code to demonstrate the interface inheritance is given below. The given program is compiled and executed successfully.
VB.Net code to implement the interface inheritance
'VB.net program to demonstrate the interface inheritance.
Module Module1
Interface ISample1
Sub Fun1()
End Interface
Interface ISample2
Inherits ISample1
Sub Fun2()
End Interface
Class Sample
Implements ISample2
Sub Fun1() Implements ISample2.Fun1
Console.WriteLine("Fun1() called")
End Sub
Sub Fun2() Implements ISample2.Fun2
Console.WriteLine("Fun2() called")
End Sub
End Class
Sub Main()
Dim S As New Sample()
S.Fun1()
S.Fun2()
End Sub
End Module
Output:
Fun1() called
Fun2() called
Press any key to continue . . .
Explanation:
In the above program, we created a module Module1. Here, we inherited the ISample1 interface inside another interface ISample2. Then we implemented interface ISample2 inside the Sample class.
At last, we created a Main() function, which is the entry point for the program, here we created the object of Sample class and called the Fun1(), Fun2() methods that will print an appropriate message on the console screen.
VB.Net Basic Programs »