Closed GoogleCodeExporter closed 8 years ago
Attached patch is not correct. This is correct.
Original comment by Kvasov.R...@gmail.com
on 29 May 2009 at 11:30
Attachments:
Thanks.
Original comment by China.LiuJunFeng
on 29 Jul 2009 at 7:40
I do think the patch is not completely correct. If the value is a UInt, it
shouldnt be converted to a int first. My suggestion would be
(WorkSheetEncoder.cs):
if (value is uint)
{
RK rk = new RK();
rk.Value = (uint) value;
return rk;
}
else if (value is int || value is short)
{
...
Original comment by peter.ha...@gmail.com
on 11 Feb 2011 at 10:15
Original issue reported on code.google.com by
Kvasov.R...@gmail.com
on 29 May 2009 at 11:13