You want to initialize your class variables using the constructor, like this:
public GeometricSequence(double initial, double mult)
{
currentValue = initial;
multiplier = mult;
}
9.5m questions
12.2m answers