Home » C# Programming » Interfaces

Which of the following is the correct implementation of the interface given below? interface IMyInterface { double MyFun(Single i); }

Correct Answer: class MyClass: IMyInterface { double IMyInterface.MyFun(Single i) { // Some code } }

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion