using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Interface { /// /// 公共方法接口 /// public interface ICommon { /// /// 获取等级对应分数 /// /// 等级 /// int GetScore(int level); } }