Blog LogoBlog Logo

Tag: json

All tags

Why is there a difference between decimal 0 and 0.0?

const decimal ZeroA = 0M; const decimal ZeroB = 0.0M; They're the same thing, right? Well, almost. The equality operator says they're the same thing. bool...

— 03 Jul 2021