Z zerocool1 Diamond Member Jun 7, 2002 4,486 1 81 femaven.blogspot.com May 11, 2005 #1 For some reason when I am coding in C# system.math isn't working. Any ideas? Thanks Amit
Z zerocool1 Diamond Member Jun 7, 2002 4,486 1 81 femaven.blogspot.com May 11, 2005 #3 Originally posted by: torpid What do you mean it's "not working"? Click to expand... it wasn't coming up with a tooltip, but then again I was trying to use it as a namespace
Originally posted by: torpid What do you mean it's "not working"? Click to expand... it wasn't coming up with a tooltip, but then again I was trying to use it as a namespace
T torpid Lifer Sep 14, 2003 11,631 11 76 May 11, 2005 #4 Do you mean intellisense doesn't pop anything up as you type system.math. ?
Snapster Diamond Member Oct 14, 2001 3,916 0 0 May 11, 2005 #5 Remember C# is case sensative, so system.math will not work it has to be System.Math.
S SelArom Senior member Sep 28, 2004 872 0 0 www.djselarom.com May 11, 2005 #6 Originally posted by: Snapster Remember C# is case sensative, so system.math will not work it has to be System.Math. Click to expand... Yeah what he said. alternatively, at the top of the code put "Using System.Math" and you will be using that namespace. -SelArom
Originally posted by: Snapster Remember C# is case sensative, so system.math will not work it has to be System.Math. Click to expand... Yeah what he said. alternatively, at the top of the code put "Using System.Math" and you will be using that namespace. -SelArom