vote up 0 vote down star

Possible Duplicate:
Double or double, String or string

What is the difference between using a type like double and Double?

Double testNumber = 0;
double testNumber2 = 0;

What is the difference between them? Also, same question holds for int and (various) IntXX, etc;

Can someone explain?

Thanks!

flag

closed as exact duplicate by Mark Rushakoff, Luke, Raj More, Jay Riggs, Michael Petrotta Oct 16 at 17:11

9 Answers

vote up 9 vote down check

Double is actually System.Double, which is a specific type in the .NET framework.

double is an alias that the C# language provides to ease typing. This works, even if the System namespace is not included with a using statement. The compiler will automatically replace "double" with "System.Double" in the compiled IL when it compiles your program.

link|flag
vote up 0 vote down

There is not much of a difference.

Double is System.Double when you have the using statement specifying the namespace at the top.

double is an alias to System.Double, so it really is the same thing.

As a side note, you do not need to have include any namespaces at the top of a file in order to use the double, but you do if you want System.Double to work.

link|flag
vote up 0 vote down

The keyword double is simply an alias for System.Double. Same applies for int = System.Int32, long = System.Int64, etc.

link|flag
vote up 0 vote down
  1. Double is short for System.Double. The System part can be omitted because you probably already have a using System; on top of the source file

  2. double is an alias for System.Double (remove the using System) call and it will still compile.

link|flag
vote up 3 vote down

No difference . Compiler takes both as float64

Here is the proof alt text

Note : double is alias of System.Double

link|flag
vote up 3 vote down

"double" is an alias for System.Double. You can do the same thing like this:

using MyDouble = System.Double;
link|flag
vote up 2 vote down

They are just aliases of each other.

link|flag
vote up 4 vote down

There is no difference.

C# isn't like java where one points to an object type and one to the value type.

link|flag
1  
double is a C# language keyword referring to System.Double. One is in the .NET specification, and one is in the C# specification. Within C#, they are identical. – 280Z28 Oct 16 at 16:57
vote up 1 vote down

They are just an alias

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.