private void Entry() { SampleClass sample = new SampleClass(); // 암묵적 멤버 구현의 호출 sample.HelloWorld(); // 명시적 멤버 구현의 호출 (sample as SampleInterface2).PrintHello(); }