I am trying to find a way to format an equation in C#. The steps and result I am trying to achieve are something as follows:
- First, declare a simple
string
equation in code likestring equation = "a/(b^2)"
- Second, have this string be displayed on my C# Windows Form (in a Label preferably) but Mathematically formatted. <-- which is the part that I need help with.
Here is an example of how a mathematically formatted equation looks like:
Can Math.NET accomplish that? Is yes, please let me know how as this will save me in many ways. If no, are there any alternative methods?
Feel free to link me a Guild for Math.NET that I can read. I already looked for one and didn't find any useful resources.