mtreit
mtreit
CC#
Created by Boykisser on 6/18/2024 in #help
I am new to C# and would like to hear about all the resources(paid or not) where I can learn C#.
Check out Advent of Code if you haven't already
17 replies
CC#
Created by Boykisser on 6/18/2024 in #help
I am new to C# and would like to hear about all the resources(paid or not) where I can learn C#.
You almost certainly don't need a paid course.
17 replies
CC#
Created by Boykisser on 6/18/2024 in #help
I am new to C# and would like to hear about all the resources(paid or not) where I can learn C#.
I also think solving Advent of Code problems is a nice way to practice the language and learn it's features.
17 replies
CC#
Created by Boykisser on 6/18/2024 in #help
I am new to C# and would like to hear about all the resources(paid or not) where I can learn C#.
You can use $projects to get inspiration for how to practice.
17 replies
CC#
Created by Boykisser on 6/18/2024 in #help
I am new to C# and would like to hear about all the resources(paid or not) where I can learn C#.
We usually recommend starting with $helloworld
17 replies
CC#
Created by Jλssspoon on 6/3/2024 in #help
Should I learn python before C#
Modern .NET Programming also relies on many packages
58 replies
CC#
Created by Jλssspoon on 6/3/2024 in #help
Should I learn python before C#
Not a fan of packages?
58 replies
CC#
Created by Jλssspoon on 6/3/2024 in #help
Should I learn python before C#
Python is a fine language.
58 replies
CC#
Created by Jλssspoon on 6/3/2024 in #help
Should I learn python before C#
Probably depends on what kind of programming you're planning on doing.
58 replies
CC#
Created by Blazing Badger on 5/30/2024 in #help
Can you solve this problem
I think they mean fields
17 replies
CC#
Created by Blazing Badger on 5/30/2024 in #help
Can you solve this problem
No description
17 replies
CC#
Created by Blazing Badger on 5/30/2024 in #help
Can you solve this problem
I also really don't like the term instance variables here.
17 replies
CC#
Created by Blazing Badger on 5/30/2024 in #help
Can you solve this problem
I haven't used UML in about 20 years. But from what you are showing the upper box is data - fields and properties, and the lower box is constructors and other methods. How UML distinguishes between fields and properties I'm not sure.
17 replies
CC#
Created by Blazing Badger on 5/30/2024 in #help
Can you solve this problem
Also, if you are using C# for this class then that UML makes me sad.
17 replies
CC#
Created by Blazing Badger on 5/30/2024 in #help
Can you solve this problem
If you have specific questions or are getting stuck, feel free to ask.
17 replies
CC#
Created by Blazing Badger on 5/30/2024 in #help
Can you solve this problem
Well, yes, but not going to do your homework for you.
17 replies
CC#
Created by divadop on 4/27/2024 in #help
✅ :white_check_mark: Dictionary<int, ...> lookup time seems a bit too slow
Just measured with Stopwatch.
17 replies
CC#
Created by divadop on 4/27/2024 in #help
✅ :white_check_mark: Dictionary<int, ...> lookup time seems a bit too slow
I don't know what line by line profiling is, but doing 1 million lookups on my machine took 5 milliseconds.
17 replies
CC#
Created by Pan!cKk on 4/23/2024 in #help
Download File in Chunks
Although even having a separate method here is maybe overkill.
20 replies
CC#
Created by Pan!cKk on 4/23/2024 in #help
Download File in Chunks
The stream has an internal pointer that advances as you read it so you don't need to seek or anything like that.
20 replies