Hey all,
I am trying to use a numeric up down object. But the problem is that I need the output to be an int since I need to feed the value as an argument for an int.
Example:
public void ExampleMethod(int lala) {
//stuff
}
ExampleMethod(numericUpDown1.Value);
By the way, numeric up down by default is decimal, and when I try to use Int32.Parse(); on it it doesn't work.