If u declare two interfaces withsame methodnmae .prototype
how can u call the particular method from class?
Answers were Sorted based on User's Feedback
Answer / diana cheriyan
Suppose IntSample1 and IntSample2 are interface,then We call
method of IntSample1 by IntSample1.Methodname
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / n.v.s prasad
By using explicit interface declaration which is nothing
but (Interfacename.Methodname) but the problem is method
available to interface not for class(if you careate
instance of your class we are not able to access method
which we implemented above in our class, so method is
availble to interface only)
Note:If you want to acess method by instance of your class
we need to cast our instance to 'interface'
((instance)interfacename).methodname--->Possible
instance.methodname ---->Not possible
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / srinivas.r
we need to implement methods of interfaces explictly i.e
interfaceName.methodName
Is This Answer Correct ? | 2 Yes | 0 No |
how to cleanup object that does not support dispose method? How to implement dispose for such scenarios?
What are the different types of assembly?
What are delegates?
What is the use of properties window?
What are the Uses of CLR
What is the relationship between a process, application domain, and application?
What is the do while loop code?
What does void do in c#?
What is the difference between arraylist and list in c#?
How big is an int16?
Is c# a technology?
how can i display crystal report in button_click? am working with VS2005..........plz help me