sveawebpay / dotnet-integration

SDK for Sveas standalone payment methods
Other
5 stars 14 forks source link

Decimal is a base type and should be formatted as such. #2

Closed irkush closed 10 years ago

irkush commented 10 years ago

decimal is a base type and should be used as such,.

var value = new Decimal(100.0); 

should be replaced with:

var value = 100.00M;
Sinsabre commented 10 years ago

Solved in b09f10fbf80d8b0f4db01071e08ea83c72e3c4e0