在C#中,接口内所有的方法默认都是公用方法(public),但是不能加任何的修饰符。interface IProduct{ int GetPrice(int id); //默认是public,但是不需要写public}
接口中的修饰符应该在实现这个接口的类中定义
public