Open d4rkd0s opened 8 years ago
It appears that your variables stopOneNum, stopTwoNum, stopThreeNum
and styleNum
are all of the int type when you are trying to put them in your string[] entry
object. I would recommend calling the .ToString() method on these variables, as shown here:
string[] entry = { keyboardType, songName, stopOneName, stopOneNum.ToString(), stopTwoName, stopTwoNum.ToString(), stopThreeName, stopThreeNum.ToString(), styleName, styleNum.ToString() }; //convert int to string
@brando5393 what do you think?
When running line 72
string[] entry = {keyboardType,songName,stopOneName,stopOneNum,stopTwoName,stopTwoNum,stopThreeName,stopThreeNum,styleName,styleNum};//convert int to string
I get the following: