This should be easy but ive gotten quite fatigue from coding. I have a multiline textbox which all i need is a loop to count up by 1.5 and the range is from 5 to 23. i found the while loop worked best but i just cant get it to string after each count
double temp=5;
while (temp > 23)
{
temp = Convert.ToDouble(textBox7.Text);
temp=temp + 1.5;
}
textBox7.Text = temp.ToString();
Thanks for taking a look, i know I will proberly have a face palm moment later