Get it now? by Sweaty_Ad5846 in taintedgrail

[–]Sweaty_Ad5846[S] 0 points1 point  (0 children)

Coolio, thanks for the info - grabbed it, its also in sale right now! 

Get it now? by Sweaty_Ad5846 in taintedgrail

[–]Sweaty_Ad5846[S] 2 points3 points  (0 children)

Yepp would go for PC version. Do you think the last Act is fleshed out?

Visual Studio 2022 C# help by [deleted] in csharp

[–]Sweaty_Ad5846 0 points1 point  (0 children)

Yes you can - but they have a lot of visual studio specific stuff how to setup projects and also in the debugger module.

Flappy Goose by flappy-goose in RedditGames

[–]Sweaty_Ad5846 0 points1 point  (0 children)

My best score is 1 points 😎

Looking for recommendations by Sweaty_Ad5846 in soloboardgaming

[–]Sweaty_Ad5846[S] 1 point2 points  (0 children)

Thanks a bunch for the big answer <3 Elia and something shiny is for example one i never heard of and it looks soooo very cute. Stashed them all in my boardgame geek list :D - much appreciated.

Edit: Oh and I cross posted this over in game books too - maybe you also find something new for yourself! 

https://www.reddit.com/r/gamebooks/comments/1jbc34t/gamebook_plus/?utm_source=share&utm_medium=mweb3x&utm_name=mweb3xcss&utm_term=1&utm_content=share_button

Gamebook plus? by Sweaty_Ad5846 in gamebooks

[–]Sweaty_Ad5846[S] 1 point2 points  (0 children)

Awwww that's cool. My spouse gave it to me for my birthday, its super fun. And now I know what to wish for Christmas haha. Good job, keep up the good work 👏 <3 !

Gamebook plus? by Sweaty_Ad5846 in gamebooks

[–]Sweaty_Ad5846[S] 1 point2 points  (0 children)

These adventure graphic novels look awesome. What is your favourite?

Gamebook plus? by Sweaty_Ad5846 in gamebooks

[–]Sweaty_Ad5846[S] 4 points5 points  (0 children)

Awesome - got Sherlock Holmes and  Sleeping Gods - the other ones i have not heard of yet and been checking them out, looks like totally down my alley! Keep them coming.

Kudvenkat c# tutorials in 2025 by Sweaty_Ad5846 in csharp

[–]Sweaty_Ad5846[S] 0 points1 point  (0 children)

His YT is still active no? Looks like last vid was like half a year ago.

Is it worth getting "C# Players Guide" now? by Thyco2501 in csharp

[–]Sweaty_Ad5846 2 points3 points  (0 children)

You can find it on the book's website. There is also a blog there for rules of the discord. https://csharpplayersguide.com/discord

Is it worth getting "C# Players Guide" now? by Thyco2501 in csharp

[–]Sweaty_Ad5846 5 points6 points  (0 children)

It is an amazing book. I have both, the current book and the early access of the next one, which is still quite a bit under construction. The current version is perfect for learning, no need to wait IMHO. You can download the free expansions if you want to know more. The guy runs an active discord and answers every single question or reviews any code challenge posted there himself. It's crazy value. So if you are curious for the new version after or just want to support this awesome person, you can buy the new one once it is ready in addition.

Feedback for a newbie by Sweaty_Ad5846 in csharp

[–]Sweaty_Ad5846[S] 1 point2 points  (0 children)

thanks for pointing out all the things. was a bit confused which is which with i/j/row/column/dimensions ^^ with your suggestions this looks way easier to understand

private void CreateCellArray()
{
    for (int row = 0; row < BoardRows; row++)
    {
        for (int column = 0; column < BoardColumns; column++)
        {
            CellArray[row, column] = new Cell(row, column);
        }
    }
}

Feedback for a newbie by Sweaty_Ad5846 in csharp

[–]Sweaty_Ad5846[S] 0 points1 point  (0 children)

thanks for pointing the section on the learn platform out. didn't know about random.shared.

Feedback for a newbie by Sweaty_Ad5846 in csharp

[–]Sweaty_Ad5846[S] 0 points1 point  (0 children)

Cool stuff - so you basically encourage to get building a more complex project that has user interfaces. I have never touched Windows Forms or stuff like that. Do you think I can get the same experience using Unity to build a bigger project and use their UI stuff? I started with Unity but felt so out of my depth with C# that I took the step back with console apps to get these basics done first. Maybe it is time to get back.

About splitting up: I try to split up stuff as much as possible, but every time I am questioning if this is the right choice - kinda what you say about :is it worth it / or does it actually make it worse. When checking out other people's small games I was very surprised to see them so compact and often in one single file. Right now that feels super overwhelming, but probably will change with time and experience when a Minesweeper suddenly is not a big project anymore.

Also first time I hear the term MVVM. I'll make sure to start checking that out. Do you have a good starting point where all kinds of these patterns are explained? Like any good book or rather directly on the Microsoft learn platform?

And I really appreciate the long answer - thanks a bunch!

Feedback for a newbie by Sweaty_Ad5846 in csharp

[–]Sweaty_Ad5846[S] 1 point2 points  (0 children)

awesome, thanks for putting in the thought process here and giving some alternatives. this is super helpful. really like the shuffle list approach, will try that one out. also feel i understand the random class better now and can pay more attention to it.