public interface ISomeInterface1 {
int SomeProperty {get; set;}
event EventHandler SomeEvent;
int this[string index] {get; set;}
public class ImplicitImplemantion : ISomeInterface1 {
public void SomeMethod(){
public int SomeProperty {get; set;}
public event EventHandler SomeEvent;
public int this[string index] {
public static void Main()
Console.WriteLine("Implicit interface implementation");