Question by
orkunsevengil · Aug 03, 2016 at 12:59 PM ·
erroreditorerror builderror-message
How to fix this invalid token issue?Im new and wanted to learn what this code executes.
adsız.png
(28.8 kB)
Comment
Answer by Landern · Aug 03, 2016 at 01:03 PM
The issue you're having is "out" is a reserved word and should not be used as a variable. The out and ref keywords are reserved words that allow you to modify referenced objects and can enforce whether an object must not be null.
tl;dr: dont' use keywords as variable names in code.