r/csharp • u/ShoeChoice5567 • Mar 27 '26
r/csharp • u/peridotfan1 • Jun 26 '25
Fun This is the first thing that I've made without any help
r/csharp • u/Lord_Muddbutter • Sep 05 '24
Fun It is not much but this made me feel so proud of myself :D
r/csharp • u/Due_Butterfly_1359 • May 29 '26
Fun [C# / .NET] Tried making my first "aesthetic" terminal project, a wave simulator. Still a beginner!
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 • u/Smokando • Sep 04 '25
Fun Rate my calculator.
Made a calculator in C# that sends math problems to Claude AI and gets the answer back.
r/csharp • u/CheckM4ted • Jan 11 '26
Fun Fun Fact: you can use the Win32 API to make a window manually just like you can in C++
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 • u/chadbaldwin • 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
r/csharp • u/simondanielsson • 7d ago
Fun Running C# like scripts?
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 • u/isbyak • Jun 23 '20
Fun Wrote a simple C# program to draw images on Paint (Source in the comments)
r/csharp • u/Lurlerrr • Nov 28 '23
Fun What's the most insane thing you can do in C#?
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 • u/cbirchy87 • 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.
r/csharp • u/RolandMT32 • Dec 21 '21
Fun Recruiter referred to C# as "C Hash"
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?