I have a datagridview column 'total',in which I am doing sum of rates of respective items entered.Sometimes I am getting addition like 30.19 Rupees or 100.59 rupees,I want to make 30.19 to 30.50 & 100.59 to 101.So can anyone plz help me..?
i have tried
float val = float.Parse(value);
total = val;
ekunrakam = ekunrakam + total;
Math.Round(ekunrakam + 0.5,2);
but its not working..
thanks in advance..