I'm making a program that divides by 1000. It works fine until it divides by a number higher than itself. For example
double asdf = (1000 / 3000);
Math.Round(asdf);
txtSpeed.Text = asdf.ToString();
When it divides by a number higher than 1000 it just gives me 0. Anyone know what's causing this?
Thanks,
SiPex