How to call a function when a class implements 2 interfaces and function is present in both interfaces?
Answers were Sorted based on User's Feedback
we have two interfaces inclass thet two interfaces having same method name the time wecan call based on interface
example
interface1
{
add()
}
interface2
{
add()
sub()
}
class classname:interface1,interface2
{
'now wewant call the method add from interface1
interface1.add()
'now we want call the method add from interface2
interface2.add()
'now we want call the method sub() from interface2
interface2.sub()
}
Is This Answer Correct ? | 1 Yes | 0 No |
how to prevent a class from being inherited in c#.net?
What is a datacontract?
How many types of interface are there in c#?
What is assembly c#?
the c# keyword .int. Maps to which .net type?
int a = '3' + '4'; char n = (char)a; What will be answer of n?
What does do in c#?
Describe two uses of the “using” statement during the operation of c#?
What does typeof return c#?
What is the advantage of constructor in c#?
What do you know about WM_CHAR message?
What is system predicate?