sb.Append(source_value);
it is behaving differently in 2 scenarios
For both scenarios
source_value is of type object {decimal}
source_value = 12;
1st Scenario
It is appending 12
2nd Scenario
It is appending 12.00
I'm confused why it is behaving differently, can any tell me whats happening
there