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 can I find out what the garbage collector is doing?
Tell us what is a sealed class?
How will you register com+ services?
Explain the code behind wors and contrast that using the inline style.
Do you know the difference between the stack and the heap?
Explain can the validation be done in the server side? Or this can be done only in the client side?
Why you want to leave your previous company.
How ccw (com callable wrapper) and rcw (runtime callable wrappers) works?
Explain about .NET services?
What is the difference between constants and read-only variables?
Explain how com+ related to the dna architecture?
What are data types in .NET?
Please explain when should you use .net web forms over asp.net mvc?
What is .net technology?
what is the default security setting in .net?