What is an Interface? Have you ever developed an Interface.
Answer Posted / arash
interface is a oops concept (inheritance)
its like multiple inheritance in C#.net with inheritance Key but we use Interface in VB.Net
Public Interface AnInterface //interface
Function WhoAmI() As String
End Interface
Public Class AClass
Implements AnInterface
Public Function WhoAmI() As String Implements AnInterface.WhoAmI
Return "AClass"
End Function
End Class
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How is .net core cross platform?
Tell us what is the native image generator?
Tell me what is a “jagged array”?
How you apply a theme in whole application in .Net?
What is the concept of inheritance in .net?
What is .net3.0 and .net3.5?
Sql Queries: A Table will be given Omiting Duplicate rows and adding a new column
Tell us the difference between managed and unmanaged code?
What is .net assembly?
What is garbage collection? Explain the difference between garbage collections in .net 4.0 and earlier versions?
What are the deferred execution and the immediate execution in linq?
What is smart navigation in .net?
Why do we use msmq?
What is the new three features of COM+ services, which are not there in COM (MTS)
What is dot net and its uses?