76 Replies
also ignore the abhorrent amount of comments there are
well you need a
+
between "text"
and num01
toooh thanks
still doesn't explain this though 😢

there is no ending
;
on line aboveWhat does the error actually say?
Also
"..." + num1 + num2
won't do what you expect, you need "..." + (num1 + num2)


Is that the greek question mark by any chance
As this_is_pain said, you lack a semicolon
Ah
Huh
Greek question mark is a thing, isn't it lmao
yep
Thinker
REPL Result: Failure
Exception: CompilationErrorException
Compile: 409.142ms | Execution: 0.000ms | React with ❌ to remove this embed.
@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?Probably just missing a semicolon
uhhh
i think it's english?
I can't imagine they somehow got a quirky character in there
there are arabic character to it's side, but every time i semicolon i do ";"
or something else on accident
let me check this
the ones that do work still hilights the ones that dont

i have no ieda 😭
Given the slightly offset location of the errors, there might be some invisible character after the semicolon
Copy this:
;
and replace those characters with it
Just to make suredel just brings the lines below to it
pasting this and deleting like... everything after worked!
although there are these errors now?
i'm gonna check that line on the left

okay removing the lines on the left removed the console error
Seems like some weird characters found their way into this code... somehow
Did you copy it from somewhere?
Could be there were some
s or somethingnevermind those are still there

i don't even know, i was typing and then once i was finished i just noticed that
Try
Edit -> Advanced -> View White Space
That should show whitespace that's usually invisibleyeah it's still this

this edit?

Huh, it's not there?
is it supposed to be there?
i'm following a brackeys tutorial
i think that's how you spell brackeys 🤷
Could try this: https://stackoverflow.com/a/73140538/6042255
shortcut does this, appaerntly it's command "Edit.ViewWhiteSpace" but i don't know where to enter that

-# (there was a typo)
found it! it's on by default though

so that can't be it
so the problem isn't with console, it's with whatever i put there....

okay now im just confused
WHAT IS TEHRE
??????

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
but that just put it the problem somewhere else
retyping the eltter to the squiggle's right moves it too the right
I think it is just being buggy
It will compile assuming the other errors are gone
yeah, it just moves wherever

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.

In your case it has to do with nullabillity
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)
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)also if i do this again

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 anywaywhoops that's irrelivant
I would assume he would use Visual Studio
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#
Visual Studio Community?
That would be the easiest one even
But I would pick the one Brackeys uses
guh

and guh

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.
maybe convert.?
What do you mean? I have oractically spoonfed the solution
i don't think i understand- my variable is a
string
, but i still get a nullibility error (i think)this

See if you hover over it it mentions the signature

string?
is what it returns, meaning it is either a string or null
You are taking in string
, meaning just stringohhhh the "?" is part of it i didn't see that that's my bad

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
that's different whoops
all it was was one question mark?
Yes
But you should fix that part you just send
yeah i will
Forget about Convert, never use it. Use $tryparse
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
)
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 hereInstead 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
oooh okay
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 sensewait 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...
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 itahhh that makes sense
