public interface ISomeInterface1 {
int SomeProperty {get; set;}
event EventHandler SomeEvent;
int this[string index] {get; set;}
public class ExplicitImplemantion : ISomeInterface1 {
private EventHandler someEventVar;
void ISomeInterface1.SomeMethod(){
Console.WriteLine("This is method belongs to interface");
public void SomeMethod(){
Console.WriteLine("This is method belongs to class");
int ISomeInterface1.SomeProperty {get; set;}
event EventHandler ISomeInterface1.SomeEvent {
add { someEventVar += value; }
remove {someEventVar -= value; }
int ISomeInterface1.this[string index] {
public static void Main()
ExplicitImplemantion obj = new ExplicitImplemantion();
ISomeInterface1 interfaceObj = obj as ISomeInterface1;
interfaceObj.SomeMethod();
int val2 = interfaceObj.SomeProperty;
int val4 = interfaceObj["someKey"];