what happens if you inherit multiple interfaces and they have conflicting method names?
Answer Posted / Ajeet Kumar Rawat
When inheriting multiple interfaces in C# that have conflicting method names, the classes must implement all of them. By default, interface methods are abstract and do not provide an implementation. If a class cannot implement a required method because it conflicts with another interface's requirement, it must be explicitly marked as abstract.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers