Monsieur Wholesome
Monsieur Wholesome
CC#
Created by ByGoalZ on 7/3/2024 in #help
Register user doesnt work (MySQL)
What is your table defined as? The columns specifically
21 replies
CC#
Created by ByGoalZ on 7/3/2024 in #help
Register user doesnt work (MySQL)
Is there a reason youre not working with a local mysql instance? Like with XAMPP or something
21 replies
CC#
Created by ByGoalZ on 7/3/2024 in #help
Register user doesnt work (MySQL)
Dont post that connection string
21 replies
CC#
Created by ByGoalZ on 7/3/2024 in #help
Register user doesnt work (MySQL)
Yeah, so...
21 replies
CC#
Created by Citrus limon on 6/26/2024 in #help
Is there any difference between visual studio code and community?
Open up another thread for that issue
12 replies
CC#
Created by Citrus limon on 6/26/2024 in #help
Is there any difference between visual studio code and community?
Doubt
12 replies
CC#
Created by Citrus limon on 6/26/2024 in #help
Is there any difference between visual studio code and community?
It's either that, or the Console / Terminal automatically closes itself It automatically closes by default, and this happens when you double click the .exe it compiles But VS is as nice as to have that behaviour that says "Yo, the program ended btw. I will leave this open until you press a key, but if you dont want this and you want it to always automatically close the console, here is where you have to go and check a box"
12 replies
CC#
Created by Citrus limon on 6/26/2024 in #help
Is there any difference between visual studio code and community?
You cant really
12 replies
CC#
Created by Citrus limon on 6/26/2024 in #help
Is there any difference between visual studio code and community?
Visual Studio Code is a Text Editor with community-made extensions that can do many many thing; But is barely enough for C# development. Think of Notepad++, and how you can have extensions there too Visual Studio (Community, Professional, Enterprise) is an IDE. An integrated development environment. A program purely made for specific programming language. In this case it is the .NET languages, which are C#, F#, VB.NET and a couple more The experiences is going to be miles better on Visual Studio, than in Visual Studio Code, as it is entirely made for C# At least when you get to more advanced projects, and not just console programs with < 100 lines of code
12 replies
CC#
Created by 𝐊𝐫ø𝐑ø𝐗 on 6/16/2024 in #help
✅ My other post is closed idk why but
It didnt get closed either
15 replies
CC#
Created by 𝐊𝐫ø𝐑ø𝐗 on 6/16/2024 in #help
✅ My other post is closed idk why but
Because you phrased is as if it was a ChatGPT prompt Or like, you sent your assignment's task in
15 replies
CC#
Created by ItaM on 5/20/2024 in #help
What are you guys take in SOLID?
"What do you guys think of SOLID" and "So I did this thing, should I do it differently" 😆
13 replies
CC#
Created by ItaM on 5/20/2024 in #help
What are you guys take in SOLID?
SOLID is a holy grail for best-case programming with infinite time resources to always do everything right Reality is far from it though, so you will break it inevitably at some point It ain't that bad to break it
13 replies
CC#
Created by ItaM on 5/20/2024 in #help
What are you guys take in SOLID?
Those are very different questions
13 replies
CC#
Created by human being on 5/11/2024 in #help
IsAllDigits
Can you take screenshots instead of taking a phone picture of a screen of code?
76 replies
CC#
Created by ! 0Falco on 5/9/2024 in #help
How to get rid of nullable warning?
if you are specifically wanting Time, you could also do
if(weatherData?.Hourly?.Time is { } time)
{
// time is now a variable that was assigned from weatherData.Hourly.Time if none of them was null, and you can use it without typing it all out
}
if(weatherData?.Hourly?.Time is { } time)
{
// time is now a variable that was assigned from weatherData.Hourly.Time if none of them was null, and you can use it without typing it all out
}
15 replies
CC#
Created by ! 0Falco on 5/9/2024 in #help
How to get rid of nullable warning?
if(weatherData?.Hourly?.Time is not null) // or "!= null"
{

}
if(weatherData?.Hourly?.Time is not null) // or "!= null"
{

}
15 replies
CC#
Created by ! 0Falco on 5/9/2024 in #help
How to get rid of nullable warning?
Null coalescing operator Null conditional operator Null forgiving operator
15 replies
CC#
Created by ! 0Falco on 5/9/2024 in #help
How to get rid of nullable warning?
Do null checks and handle null cases
15 replies
CC#
Created by kinglord on 4/1/2024 in #help
Use language version 9.0or greater
.NET Framework is old and obsolete We're talking like half a decade old essentially (Ignoring the last version update that didnt make much better)
11 replies