Q: will this code compile ? interface IMyInterface { void fun1(); void fun2(); } class MyClass : IMyInterface { void IMyInterface.fun1() { throw new NotImplementedException(); } void IMyInterface.fun2() { throw new NotImplementedException(); } }
Rajesh Singh
Select an image from your device to upload