mXparser "Hello World!" C# tutorial using Visual Studio 2015.
using System; using org.mariuszgromada.math.mxparser; namespace mxparser.helloworld { class Program { static void Main(string[] args) { Expression eh = new Expression("5^2 * 7^3 * 11^1 * 67^1 * 49201^1"); Expression ew = new Expression("71^1 * 218549^1 * 6195547^1"); String h = mXparser.numberToAsciiString(eh.calculate()); String w = mXparser.numberToAsciiString(ew.calculate()); mXparser.consolePrintln(h + " " + w); } } }
Step 1.1 Create new project.
Step 1.2. Select "Visual C#" and "Console Application". Input "Project name" and browse "Project location".
Step 2.1. Reference "mxparser.dll" library.
Step 2.2. Pickup location of the "mxparser.dll" file.
Step 2.3. Click "Add" and your project is ready to code!
Step 3.1. This is a code draft of your class. Import "org.mariuszgromada.math.mxparser" package - you should see code completion hints while typing.
Step 3.2. Write the full "Hello World!" code.
Step 4.1. Run the project.
Step 4.2. Check whether "Hello World!" text was displayed!
Step 5. Enjoy using mXparser 🙂
Best regards,
Mariusz Gromada
Download latest release – v.4.1.1 Aeries: bin + doc + src (.zip 13.4 MB)
Source code .zipSource code .tar.gz View on GitHubMathSpace.pl