예제) 명시적 인터페이스(1)

 

 

 

 

 

using System;

 

interface IFly

{

  void DefaultAction();

  void Crash();

}

 

interface IRun

{

  void DefaultAction();

  void Crash();

}

 

 

 

 

 

 

+ Recent posts