When I serialise an object I would like to have a double precision in
the "double" type :
My code:
private double _price = 100;
public double Price
(
get (return;)
set (_price = value;)
}
Serialize :
<price100 </ price>
And i want:
<price100.00 </ price>
How do ?
thanks
Comment