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
Explain clr, cts and cls?
Tell us the differences between an interface and an abstract class in .net?
What is clr in .net?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?
What is the difference between response.write & response.output.write?
Explain dataset.acceptchanges and dataadapter.update methods in .net?
What is SOAP? How you will do windows and forms authentication?
What is COM Interoperability in .NET
Tell us what is heap and what is stack?
How do we access crystal reports in .net?
What is .net standard?
What is typical about a windows process in regards to memory allocation in dot net?
Explain what is the difference between web application and enterprise application?
What is a web service in .net?
What is multiThreading in .NET?