这样写:
int a = 90 ;int b =17 ;double c = (double)a / (double)b ;textbox.text = c.tostring()
float a = 90; float b = 17; float c = a / b;