S
Steph
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 :
<price> 100 </ price>
And i want:
<price> 100.00 </ price>
How do ?
thanks
the "double" type :
My code:
private double _price = 100;
public double Price
(
get (return

set (_price = value

}
Serialize :
<price> 100 </ price>
And i want:
<price> 100.00 </ price>
How do ?
thanks