The following table lists the different between double type and decimal type.
| Type | double | decimal |
|---|---|---|
| Purpose | scitific | financial |
| Interal representation | base 2 | base 10 |
| Speed | Faster | slower |
using System;
class Program
{
static void Main(string[] args)
{
decimal d = 1;
decimal d2 = 0.1M;
Console.WriteLine(d - d2*10);
}
}
The output:
0.0
| w___w__w__._j___av__a2___s.co_m__ | Contact Us |
| Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
| All other trademarks are property of their respective owners. |