Home » C# Programming » Interfaces

Which of the following statements is correct about the C#.NET code snippet given below? interface IMyInterface { void fun1(); int fun2(); } class MyClass: IMyInterface { void fun1() { } int IMyInterface.fun2() { } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!