qqdev
qqdev
CC#
Created by 𝓻𝓸𝓸𝓽𝔂 on 7/2/2024 in #help
βœ… User Input is glitching
My first thought was that the terminal switched into the "overwrite/overtype mode"
28 replies
CC#
Created by 𝓻𝓸𝓸𝓽𝔂 on 7/2/2024 in #help
βœ… User Input is glitching
Weird
28 replies
CC#
Created by 𝓻𝓸𝓸𝓽𝔂 on 7/2/2024 in #help
βœ… User Input is glitching
Did you press CTRL+C?
28 replies
CC#
Created by 𝓻𝓸𝓸𝓽𝔂 on 7/2/2024 in #help
βœ… User Input is glitching
Not sure why that would lead to the described behavior but okay :pepelaff:
28 replies
CC#
Created by Mathall on 7/1/2024 in #help
possible null reference warning
CTRL+Z, right? Sounds like it would be worth to check for null as you did in the final solution :blobthumbsup:
36 replies
CC#
Created by Poisoid on 6/30/2024 in #help
βœ… Help please asap i cant make my portal to appear
And explain to us what you have tried so far
17 replies
CC#
Created by Poisoid on 6/30/2024 in #help
βœ… Help please asap i cant make my portal to appear
Use $codegif please
17 replies
CC#
Created by eid on 6/29/2024 in #help
svelte or react..... with asp net core??
I prefer Svelte but both work as Pobiega pointed out
5 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
πŸ™
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
Our bible
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
Visual Studio should also be able to tell you the parameter names
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
Haha, exactly
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
You are welcome!
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
You tried to create a substring which exceeds the boundaries of the string
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
The naming of the parameter hints has to follow the method signature
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
Makes it more readable
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
var firstname = fullname.Substring(startIndex: 0, length: 7);
var firstname = fullname.Substring(startIndex: 0, length: 7);
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
Like the following
48 replies
CC#
Created by Citrus limon on 6/27/2024 in #help
βœ… How do I get rid of 'System.ArgumentOutOfRangeException'
I strongly recommend to add parameter hints here
48 replies