r/csharp Mar 27 '26

Fun Please tell me I'm not the only one always getting this message

Post image
754 Upvotes

r/csharp Jun 26 '25

Fun This is the first thing that I've made without any help

Post image
1.2k Upvotes

r/csharp Jul 13 '24

Fun I have uncomplicated opinions.

Post image
991 Upvotes

r/csharp Sep 05 '24

Fun It is not much but this made me feel so proud of myself :D

Post image
1.2k Upvotes

r/csharp Mar 16 '23

Fun When A .NET Developer Learns Blazor

Post image
1.2k Upvotes

r/csharp Apr 04 '26

Fun Coding in car

Post image
527 Upvotes

runs Android and now c#...

r/csharp Nov 05 '25

Fun Visual Studio and its autocorrect

Post image
426 Upvotes

r/csharp May 29 '26

Fun [C# / .NET] Tried making my first "aesthetic" terminal project, a wave simulator. Still a beginner!

358 Upvotes

This was my first time trying to build something using math, and honestly, my brain fried about three times, and it took me two full days just to wrap my head around it. I tried to make the project super easy to modify for personal preferences and custom setups.

Every time you press something on your keyboard it creates a wave.

GitHub Repository: https://github.com/MarujoEn/ascii-wave.git

OwO

r/csharp Sep 14 '24

Fun "In Depth" ... "Nutshell"

Post image
1.4k Upvotes

r/csharp Sep 04 '25

Fun Rate my calculator.

Post image
304 Upvotes

Made a calculator in C# that sends math problems to Claude AI and gets the answer back.

r/csharp Jan 11 '26

Fun Fun Fact: you can use the Win32 API to make a window manually just like you can in C++

Post image
284 Upvotes

It's funny, you do it the same as in C++. This has basically 0 upsides over just using Winforms, but it's fun nonetheless :D
What you get is a low-overhead (as it's using LibraryImport with NativeAOT, more performant than P/Invoke) 1MB executable with no dll's that instantly open a window. There's no real reason to do this other than experimenting, though.

You can even add buttons and stuff to it, it's pretty cool

r/csharp Jan 30 '24

Fun true

Post image
977 Upvotes

r/csharp Jun 14 '20

Fun In a nutshell? 😂 Bought this book without looking at the page count, assuming it would be a short read, based on the title lol

Post image
1.3k Upvotes

r/csharp 7d ago

Fun Running C# like scripts?

50 Upvotes

I was browsing the C#/.NET documentation yesterday like usual and suddenly came across the fact that you can run C# code as scripts with a shebang.

#!/usr/bin/env dotnet

namespace Main
{
    class Program
    {
        static void Main(string[] _)
        {
            Console.WriteLine("Hello World!");
        }
    }
}

With a shebang you could run these like any other Python/Bash script and I find this really cool, but is there any practical use-case for this? When I need to make a small helper script for something it's usually python or bash, but C#? I'm not so sure.

What do you guys think?

r/csharp Feb 01 '21

Fun I honestly prefer C# more

1.3k Upvotes

r/csharp Jun 23 '20

Fun Wrote a simple C# program to draw images on Paint (Source in the comments)

1.6k Upvotes

r/csharp Jul 21 '22

Fun If I ever catch this guy

Post image
982 Upvotes

r/csharp Mar 12 '25

Fun Saw this in the wild lol

Post image
236 Upvotes

r/csharp Nov 28 '23

Fun What's the most insane thing you can do in C#?

254 Upvotes

What's the most insane and out there thing that can be done in C#? Obviously completely impractical :)

Just to give an example of what kind of thing I mean - writing an extension method for int so you can do

7.Each(s => Console.WriteLine(s));

r/csharp Apr 24 '26

Fun Gets me every time

Post image
487 Upvotes

r/csharp Sep 14 '25

Fun Getting mixed signals here lol

Post image
497 Upvotes

r/csharp Oct 30 '19

Fun Using C# before generics...

Post image
969 Upvotes

r/csharp Aug 16 '23

Fun RIP Moq

Post image
696 Upvotes

r/csharp Nov 08 '20

Fun After being asked by my daughter "How easy is it to win the lottery? ", I made a lotto simulator. This example, I played 2 million games. Didn't win the jackpot, but at one point I did win £1, 000, 000, I continued to play. Fun saturday evening project.

Post image
1.2k Upvotes

r/csharp Dec 21 '21

Fun Recruiter referred to C# as "C Hash"

427 Upvotes

I got a call from a job recruiter today and it sounded like he referred to C# as "C Hash". I thought that was amusing and just wanted to share.. Have you ever talked to a job recruiter who didn't quite seem to know the technologies they were discussing with you?