Write one code example for compile time binding and one for run time binding? What is early/late binding?
No Answer is Posted For this Question
Be the First to Post Answer
If there are 2 interface IParentInterface & IChildInterface as follows. interface IParentInterface { void InterfaceMethod(); } interface IChildInterface : IParentInterface { void InterfaceMethod(); } Both the interface contains method with same name InterfaceMethod(). How InterfaceMethod() will be handled in IChildInterface as its deriving IParentInterface
Explain the difference between the system.array.copyto() and system.array.clone()?
What is a pre-requisite for connection pooling?
What is a console file?
Which .gang of four. Design pattern is shown below?
What are the security issues if we send a query from the application?
What is the difference between dynamic type variables and object type variables in c#?
Can we define a variable with the access modifier private in an interface?
What is the use of delegate?
Write one code example for compile time binding and one for run time binding? What is early/late binding?
how to access the virtual method without creating the objet for the virtual method?
When should you use generics?