コード例 #1
0
ファイル: Number_Maths.cs プロジェクト: XevianLight/Aurora
 /// <summary>Creates a new evaluatable that returns whether or not the two given numbers are equal.</summary>
 public BooleanMathsComparison(double value1, double value2)
 {
     Operand1 = new NumberConstant(value1); Operand2 = new NumberConstant(value2);
 }