C
C#2w ago
retro!

Error with Console and int variables. Syntax error?

Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("nice! i'm a yellow guy, fyi! " + favouriteColor + " is still very cool, though.");
Console.WriteLine("... \nhey! i've been working on my math recently, how about we give it a go?");
Console.WriteLine("type one number you want for me to add to another, \n make sure it's just a number and nothing else!")

Console.ForegroundColor = ConsoleColor.Blue;
int num01 = Convert.ToInt32( Console.ReadLine() ); /* < this is a conversion! it always goes at the start of
you're converting, and you also want to include it's call brackets with it! or, right next to it... */

Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine(num01 + "! great choice! now for what you want to add to it.");

Console.ForegroundColor = ConsoleColor.Blue;
int num02 = Convert.ToInt32( Console.ReadLine() );

Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("that would be.... " num01 + num02 );

Console.ReadKey(); // < this is the end, though. it can register once you press any key!

// // ^ these however, are Methods/Functions, these are the stuff that actually DO things, not just change them.
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("nice! i'm a yellow guy, fyi! " + favouriteColor + " is still very cool, though.");
Console.WriteLine("... \nhey! i've been working on my math recently, how about we give it a go?");
Console.WriteLine("type one number you want for me to add to another, \n make sure it's just a number and nothing else!")

Console.ForegroundColor = ConsoleColor.Blue;
int num01 = Convert.ToInt32( Console.ReadLine() ); /* < this is a conversion! it always goes at the start of
you're converting, and you also want to include it's call brackets with it! or, right next to it... */

Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine(num01 + "! great choice! now for what you want to add to it.");

Console.ForegroundColor = ConsoleColor.Blue;
int num02 = Convert.ToInt32( Console.ReadLine() );

Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("that would be.... " num01 + num02 );

Console.ReadKey(); // < this is the end, though. it can register once you press any key!

// // ^ these however, are Methods/Functions, these are the stuff that actually DO things, not just change them.
No description
76 Replies
retro!
retro!OP2w ago
also ignore the abhorrent amount of comments there are
Ꜳåąɐȁặⱥᴀᴬ
well you need a + between "text" and num01 too
retro!
retro!OP2w ago
oh thanks
retro!
retro!OP2w ago
still doesn't explain this though 😢
No description
Ꜳåąɐȁặⱥᴀᴬ
there is no ending ; on line above
Thinker
Thinker2w ago
What does the error actually say? Also "..." + num1 + num2 won't do what you expect, you need "..." + (num1 + num2)
retro!
retro!OP2w ago
No description
No description
Thinker
Thinker2w ago
Is that the greek question mark by any chance
Angius
Angius2w ago
As this_is_pain said, you lack a semicolon Ah Huh Greek question mark is a thing, isn't it lmao
Thinker
Thinker2w ago
yep
MODiX
MODiX2w ago
Thinker
REPL Result: Failure
Console.WriteLine("foo"
Console.WriteLine("foo"
Exception: CompilationErrorException
- ; expected
- Unexpected character ';'
- ; expected
- Unexpected character ';'
Compile: 409.142ms | Execution: 0.000ms | React with ❌ to remove this embed.
Thinker
Thinker2w ago
@retro! Go through all your semicolons and ensure that they are actually ASCII semicolons (;) and not some other character, that seems to be the most reasonable explanation. are you using a greek keyboard layout?
FusedQyou
FusedQyou2w ago
Probably just missing a semicolon
retro!
retro!OP2w ago
uhhh i think it's english?
FusedQyou
FusedQyou2w ago
I can't imagine they somehow got a quirky character in there
retro!
retro!OP2w ago
there are arabic character to it's side, but every time i semicolon i do ";" or something else on accident let me check this
retro!
retro!OP2w ago
the ones that do work still hilights the ones that dont
No description
retro!
retro!OP2w ago
i have no ieda 😭
Thinker
Thinker2w ago
Given the slightly offset location of the errors, there might be some invisible character after the semicolon
Angius
Angius2w ago
Copy this: ; and replace those characters with it Just to make sure
retro!
retro!OP2w ago
del just brings the lines below to it pasting this and deleting like... everything after worked!
retro!
retro!OP2w ago
although there are these errors now? i'm gonna check that line on the left
No description
retro!
retro!OP2w ago
okay removing the lines on the left removed the console error
Angius
Angius2w ago
Seems like some weird characters found their way into this code... somehow Did you copy it from somewhere? Could be there were some &nbsp;s or something
retro!
retro!OP2w ago
nevermind those are still there
No description
retro!
retro!OP2w ago
i don't even know, i was typing and then once i was finished i just noticed that
Angius
Angius2w ago
Try Edit -> Advanced -> View White Space That should show whitespace that's usually invisible
retro!
retro!OP2w ago
yeah it's still this
No description
retro!
retro!OP2w ago
this edit?
No description
Angius
Angius2w ago
Huh, it's not there?
retro!
retro!OP2w ago
is it supposed to be there? i'm following a brackeys tutorial i think that's how you spell brackeys 🤷
retro!
retro!OP2w ago
shortcut does this, appaerntly it's command "Edit.ViewWhiteSpace" but i don't know where to enter that
No description
retro!
retro!OP2w ago
-# (there was a typo)
retro!
retro!OP2w ago
found it! it's on by default though
No description
retro!
retro!OP2w ago
so that can't be it
retro!
retro!OP2w ago
so the problem isn't with console, it's with whatever i put there....
No description
retro!
retro!OP2w ago
okay now im just confused WHAT IS TEHRE
retro!
retro!OP2w ago
??????
No description
retro!
retro!OP2w ago
if i retype it goes there? it seems like the red squigle of wrong just appears on that specific space and offest a little to the right BUT i can' move it or tinker with it which means i DID fix
c# Console.ForegroundColor = ConsoleColor.blue;
c# Console.ForegroundColor = ConsoleColor.blue;
but that just put it the problem somewhere else retyping the eltter to the squiggle's right moves it too the right
FusedQyou
FusedQyou2w ago
I think it is just being buggy It will compile assuming the other errors are gone
retro!
retro!OP2w ago
yeah, it just moves wherever
No description
retro!
retro!OP2w ago
it hasn't been compiling (or i guess updating) from the last version since i added this code, from pressing F5 i don't know if the yellow lines matter, i'm going to check those too.
No description
FusedQyou
FusedQyou2w ago
In your case it has to do with nullabillity
retro!
retro!OP2w ago
by the way i'm still on brackey's tutorial and i used .NET Generate Asset for build and debug (or something along with that)
FusedQyou
FusedQyou2w ago
Console.ReadLine is able to return null, although I believe these are obscure cases that won't happen Whatever the case, your variable should be of type string? to indicate they can be null (which is what the question mark indicates)
retro!
retro!OP2w ago
also if i do this again
No description
FusedQyou
FusedQyou2w ago
Additionally, you should create an if-statement in which you check if the value is null. Because if it is and you try to access it, you get a Null Reference Exception. I have no idea what this is I am surprised this tutorial is in VSCode anyway
retro!
retro!OP2w ago
whoops that's irrelivant
FusedQyou
FusedQyou2w ago
I would assume he would use Visual Studio
retro!
retro!OP2w ago
why are there so many VSs 😭 i installed visual community first and sat there for like an hour wondering why i can't get C#
FusedQyou
FusedQyou2w ago
Visual Studio Community? That would be the easiest one even But I would pick the one Brackeys uses
retro!
retro!OP2w ago
guh
No description
retro!
retro!OP2w ago
and guh
No description
FusedQyou
FusedQyou2w ago
For the record, Visual Studio is an "IDE" made specifically for C#. It has the best support. You are using Visual Studio Code, which is more a general text editor that allows the use of pluging very easily. It is also a good pick, but support for C# is less direct and can also be worse.
retro!
retro!OP2w ago
maybe convert.?
FusedQyou
FusedQyou2w ago
What do you mean? I have oractically spoonfed the solution
retro!
retro!OP2w ago
i don't think i understand- my variable is a string, but i still get a nullibility error (i think)
retro!
retro!OP2w ago
this
No description
FusedQyou
FusedQyou2w ago
See if you hover over it it mentions the signature
FusedQyou
FusedQyou2w ago
No description
FusedQyou
FusedQyou2w ago
string? is what it returns, meaning it is either a string or null You are taking in string, meaning just string
retro!
retro!OP2w ago
ohhhh the "?" is part of it i didn't see that that's my bad
No description
FusedQyou
FusedQyou2w ago
So like I said, you need to account for the fact it can be null. Your variable must also use string? Yes This conversion is also bad
retro!
retro!OP2w ago
that's different whoops all it was was one question mark?
FusedQyou
FusedQyou2w ago
Yes But you should fix that part you just send
retro!
retro!OP2w ago
yeah i will
FusedQyou
FusedQyou2w ago
Forget about Convert, never use it. Use $tryparse
MODiX
MODiX2w ago
When you don't know if a string is actually a number when handling user input, use int.TryParse (or variants, e.g. double.TryParse)
if (int.TryParse("123", out int number))
{
var total = number + 1;
Console.WriteLine(total); // output: 124
}
if (int.TryParse("123", out int number))
{
var total = number + 1;
Console.WriteLine(total); // output: 124
}
TryParse returns a bool, where true indicates successful parsing. - Avoid int.Parse if you do not know if the value parsed is definitely a number. - Avoid Convert.ToInt32 entirely, this is an older method and Parse should be preferred where you know the string can be parsed. Read more here
FusedQyou
FusedQyou2w ago
Instead of Convert.ToInt32, use int.Parse. However, your string can be null and it's not guaranteed you input a number. If you try parsing "Hello" it will break So, use int.TryParse instead. See code example above
retro!
retro!OP2w ago
oooh okay
FusedQyou
FusedQyou2w ago
This uses a special out keyword as you can see It basically is another way to return values from a method, but instead via parameters The reason it is done here is because the method itself returns a boolean indicating if it parsed, and the one with out is the actual converted value Hope that makes sense
retro!
retro!OP2w ago
wait so is int.TryParse directly interchangeable with Convert.? or just Parse in general also the random red squigly line of wrong has dissapeard! it was just buggy i think...
FusedQyou
FusedQyou2w ago
No Convert sucks because it does a lot extra under the hood Stuff you might not expect int.Parse would be the alternative but even then it will not parse null That's why you have int.TryParse here, because if it fails you can handle it
retro!
retro!OP2w ago
ahhh that makes sense
Angius
Angius2w ago
No description

Did you find this page helpful?