BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
CalcQuick calculator = new CalcQuick(); //Reassigning the formula if changed calculator["A"] = this.value1Text.Text; calculator["B"] = this.value2Text.Text; calculator["C"] = this.formulaText.Text;
//Used to recalculate the all formulas in CalcQuick calculator.SetDirty();
//Formatting the result string after parsed as double this.resultText.Text = double.Parse(calculator["C"].ToString()).ToString("#,##0.00"); |