コード例 #1
0
ファイル: CoefAndGoals.cs プロジェクト: ForkerTeam/Forker
 public bool IsEquivalentType(ICoefficient coef)
 {
     return this.GetType() == coef.GetType() && this.CountGoals == ((CoefAndGoals) coef).CountGoals;
 }
コード例 #2
0
ファイル: Coefficient.cs プロジェクト: ForkerTeam/Forker
 public bool IsEquivalentType(ICoefficient coef)
 {
     return this.GetType() == coef.GetType();
 }