Attempted to create a new instance of the MortgageData object.
The professor said:
ClassName InstanceName = New ClassName(arg1, arg2, arg3, arg4);
I used
MortgageData somethingsomething = New MortgageData(ID,principal,apr,term);
Continue to receive error message CS1002 :; Expected with the class name after a new underscore in red. I am using visual studio 2008.
Not sure what to do.
source
share