class QuotesData
in :
case QuoteProperty.Volume:
if (value is long)
{
long t = 0;
if (long.TryParse(value.ToString(), out t))
base.Volume = t;
}
break;
value datatype is double not long, i dont see the point in checking datatype
since you are using tryparse instead of parse but i leave it up to you.
Fix sugestion to accomodate both situations:
if (value is long || value is double)
Thks for your hard work!!!
Original issue reported on code.google.com by r.guerra...@gmail.com on 21 Apr 2012 at 5:03
Original issue reported on code.google.com by
r.guerra...@gmail.com
on 21 Apr 2012 at 5:03