Doing Math in .NET: .Math

Steve Hebert has started an interesting GotDotNet Workspace: .Math.

The dotMath library is a two-pass expression compiler written entirely in C# for the Microsoft .NET platform. The library requires only the core .NET library (supporting all shipping versions 1.0 and 1.1). The library is capable of running on any system.

By using the .Math library you can evaluate functions that are entered as plain strings (for example “(a + b)/c”) without having to fall back on Reflection. Test-drive it here. Great!

No Comments