0

Is there a math-related namespace in .Net?

In particular, I'm looking for information/classes to support working with algebra, trigonometry and geometry.

unwind
  • 391,730
  • 64
  • 469
  • 606
Hemant Kumar
  • 4,593
  • 9
  • 56
  • 95

3 Answers3

2

System.Math (It's a class, not a namespace)

...and yes, they will definitely help you develop a Windows Application that uses Algebra, Trigonometry, and Geometry.

Justin Niessner
  • 242,243
  • 40
  • 408
  • 536
1

You might be interested in the Math.NET project. It's a mathematical opensource toolkit written in C# for the Microsoft .Net platform.

msteiger
  • 2,024
  • 16
  • 22
0

There is System.Math class which is very basic. Have a look at F# and there are many efforts recently in that area:

Is F# really better than C# for math?

Community
  • 1
  • 1
Aliostad
  • 80,612
  • 21
  • 160
  • 208