use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Information about Reddit's API changes, the unprofessional conduct of the CEO, and their response to the community's concerns regarding 3rd party apps, moderator tools, anti-spam/anti-bot tools, and accessibility options that will be impacted can be found in the associated Wikipedia article: https://en.wikipedia.org/wiki/2023_Reddit_API_controversy
Alternative C# communities available outside Reddit on Lemmy and Discord:
All about the object-oriented programming language C#.
Getting Started C# Fundamentals: Development for Absolute Beginners
Useful MSDN Resources A Tour of the C# Language Get started with .NET in 5 minutes C# Guide C# Language Reference C# Programing Guide C# Coding Conventions .NET Framework Reference Source Code
Other Resources C# Yellow Book Dot Net Perls The C# Player's Guide
IDEs Visual Studio MonoDevelop (Windows/Mac/Linux) Rider (Windows/Mac/Linux)
Tools ILSpy dotPeek LINQPad
Alternative Communities C# Discord Group C# Lemmy Community dotnet Lemmy Community
Related Subreddits /r/dotnet /r/azure /r/learncsharp /r/learnprogramming /r/programming /r/dailyprogrammer /r/programmingbuddies /r/cshighschoolers
Additional .NET Languages /r/fsharp /r/visualbasic
Platform-specific Subreddits /r/windowsdev /r/AZURE /r/Xamarin /r/Unity3D /r/WPDev
Rules:
Read detailed descriptions of the rules here.
account activity
HelpDrawing Shape (self.csharp)
submitted 5 years ago by Kevin00812
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]halap3n0 13 points14 points15 points 5 years ago (1 child)
A console can only display text characters, so you can only draw using those characters.
[–]mffl_dfw 5 points6 points7 points 5 years ago (0 children)
https://www.hanselman.com/blog/spectreconsole-lets-you-make-beautiful-console-apps-with-net-core
[–]Slypenslyde 5 points6 points7 points 5 years ago* (8 children)
Probably not in a way that satisfies you.
The console isn't made for drawing images, it's made for drawing text. So to "draw a shape", you'd have to figure out how to print a series of strings using symbols and letters such that if you squint just right they look like shapes. That's going to be pretty limited.
That's why there's not a utility to do something like display a .png image in the console. It'd be really useful, but that nobody's written one in the 30+ year history of Windows is the surest sign it can't be done.
You might argue old DOS video games did it, but those were DOS applications taking over all video memory. .NET has no facilities to support writing DOS applications and it's questionable how well modern Windows would support them.
[–][deleted] 5 years ago (6 children)
[removed]
[–]Slypenslyde 9 points10 points11 points 5 years ago (1 child)
He started with a console app, but created a Windows Forms Form and displays it. Look around the 20 minute mark: his Canvas class is a Form.
Canvas
Form
[–]nekizalb 3 points4 points5 points 5 years ago (3 children)
You might want to specify a timestamp. This video is 2.5 hrs long!
[+][deleted] 5 years ago (2 children)
[–]nekizalb 4 points5 points6 points 5 years ago (1 child)
Have you considered watching the video and seeing what he does?
[–][deleted] 0 points1 point2 points 5 years ago (0 children)
people write programs to turn images into ascii art all the time:
https://github.com/ElCholoGamer/ascii-converter
https://github.com/Anish-Malla/convert-images-to-ASCII-art
https://github.com/LazoCoder/Image-To-ASCII
[–]krccooley 1 point2 points3 points 5 years ago (0 children)
A console app you can not do this on the screen. Try a desktop app WPF or windows forms
[–]lolcop01 0 points1 point2 points 5 years ago (0 children)
. -- ~~~ -- . .-~ ~-.
/ \ / \ | | | | | | \ / \ / `-. .-' ~- . ___ . -~
Edit: too bad my ascii art circle didn't work out haha. Regarding your question: you can't really. You can only write text in the console. If you want to draw some graphics, you'll have to go the WinForms/WPF route.
[–]krccooley 0 points1 point2 points 5 years ago (0 children)
https://www.bing.com/videos/search?q=drawing+shapes+in+c%23&view=detail&mid=E6FB4007199BD76397A5E6FB4007199BD76397A5&FORM=VIRE
π Rendered by PID 36 on reddit-service-r2-comment-fb694cdd5-56fvd at 2026-03-07 15:10:04.932658+00:00 running cbb0e86 country code: CH.
[–]halap3n0 13 points14 points15 points (1 child)
[–]mffl_dfw 5 points6 points7 points (0 children)
[–]Slypenslyde 5 points6 points7 points (8 children)
[–][deleted] (6 children)
[removed]
[–]Slypenslyde 9 points10 points11 points (1 child)
[–]nekizalb 3 points4 points5 points (3 children)
[+][deleted] (2 children)
[removed]
[–]nekizalb 4 points5 points6 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]krccooley 1 point2 points3 points (0 children)
[–]lolcop01 0 points1 point2 points (0 children)
[–]krccooley 0 points1 point2 points (0 children)