I need to run a method 4 times and store the data gained somewhere so I can display it later.
is this statement correct? if not is there any way to do this?
public void myMethod()
{
//stuff in the method
}
callOne = myMethod();
callTwo = myMethod();
callThree = myMethod();
callFour = myMethod();