コード例 #1
0
 public CustomOperator(string Designation, MetotCalculate CalculateMetod, GetEndIndex getEndIndex, bool HelperSearchIndex = true)
 {
     this.Designation       = Designation.ToLower();
     this.CalculateMetod    = CalculateMetod;
     this.getEndIndex       = getEndIndex;
     this.HelperSearchIndex = HelperSearchIndex;
 }
コード例 #2
0
ファイル: StandartOperator.cs プロジェクト: Bocmen/Calculator
 public StandartOperator(char Symbol, byte Priority, MetotCalculate CalculateMetod)
 {
     this.Symbol         = Symbol.ToString().ToLower()[0];
     this.Priority       = Priority;
     this.CalculateMetod = CalculateMetod;
 }
コード例 #3
0
 public EndValueOperator(string Designation, MetotCalculate CalculateMetod)
 {
     this.Designation    = Designation;
     this.CalculateMetod = CalculateMetod;
 }