Answer Overflow Logo
Change Theme
Search Answer Overflow
GitHub
Add Your Server
Login
Home
Popular
Topics
Gaming
Programming
Devin F.
Posts
Comments
C
C#
•
Created by Alex on 5/3/2024 in
#help
✅ Challenge does not redirect
is control ever coming to this method? can you set a breakpoint at the top and it hits it?
4 replies
C
C#
•
Created by Alex on 5/3/2024 in
#help
✅ Challenge does not redirect
you want to return a view or page.
4 replies
C
C#
•
Created by koray bey on 4/30/2024 in
#help
if statement and scopes
you only need specify the type on decleration
12 replies
C
C#
•
Created by koray bey on 4/30/2024 in
#help
if statement and scopes
right, your trying to instantiate another variable of the same name and type
12 replies
C
C#
•
Created by koray bey on 4/30/2024 in
#help
if statement and scopes
when you say int x = x + y, don't use the int in front, just assign a new value to x like
x
=
x
+
y;
x
=
x
+
y;
or
x
+=
y;
x
+=
y;
12 replies
C
C#
•
Created by koray bey on 4/30/2024 in
#help
if statement and scopes
you can reasine it in the if but not re-define
12 replies
C
C#
•
Created by koray bey on 4/30/2024 in
#help
if statement and scopes
C# won't let you redefine it, they are both accessable inside the if block.
12 replies