C# question

Snapster

Diamond Member
Oct 14, 2001
3,916
0
0
Remember C# is case sensative, so system.math will not work it has to be System.Math.
 

SelArom

Senior member
Sep 28, 2004
872
0
0
www.djselarom.com
Originally posted by: Snapster
Remember C# is case sensative, so system.math will not work it has to be System.Math.

Yeah what he said. alternatively, at the top of the code put "Using System.Math" and you will be using that namespace.

-SelArom