You most certainly failed because you did not start from the beginning. Like maths, you can't learn calculus before knowing how to multiply. Take it step by step, and you will be able to create a game eventually, good luck!
I’ve been learning Unity and C# for a week or 2 now and made a couple of simple games thanks mostly to you. But sometimes I send a text to someone, I end it in a semicolon not a full stop 😆 Thanks Brackeys
Brackeys literally covers every topic its great. I have learned more from this channel than most courses and am starting a beginner series now as well inspired by this. Thanks for the years of great help.
5:35 I know that making the window height larger isn't that exciting, but knowing how precise you need to be with code, while being a beginner it makes me so happy to see little things like that work perfectly.
@@nikoskonstantinou3681 i couldnt agree more, like a bunch of us know a lot of vfx graph, gfx graph, i watched how to make an rpg tutorial, first tutorial i watched from brackeys is "how to make a game".
Hey Brackeys, I just wanted to thank you. You coincidentally uploaded this video one day before my summer schedule, and I added C# on the list now. I'm really looking forward to the next episode, and I really hope you continue this series!
You could also store the user's name in a variable to use it in later sentences: String UserName = Console.ReadLine(); Console.WriteLine("Hello, {0}, I am your father.", UserName); The {0} is there to import the 0th (1st) variable from the list on the right into your text. You could add more variables by doing {1}, {2}, and so on.
I learned to code with C++ on Udemy. I just learned the basics I haven’t even made any programs with it it just thought me the basics. This is going to be a good series for beginner programmers for sure.
Brackeys, your video on 'How to Program in C# - BASICS (E01)' is an excellent resource for anyone looking to dive into C# programming. Your explanations are clear and concise, making it easy for beginners to grasp the fundamental concepts. I appreciate how you walk through each step, providing practical examples and demonstrating how to write clean and efficient code. Your enthusiasm for programming shines through, making the learning experience enjoyable and inspiring. Thank you for sharing your expertise and creating such valuable content for aspiring C# developers. Looking forward to the next episodes in this series!
Yesterday i spent 4hours learning C# I want to put in 2hours today the 4 and a half hour course from freecodecamp is great. Really liking the language, much prefer the syntax over VB script and delphi
God this is cool. This part always seemed so boring to me but the simple thing of changing colours is so rewarding to know that you did something and it turned out cool. Also alot easier to understand than I expected.
This video makes everything so easy, I’m learning some coding as I’m choosing computer science for my GCSEs and this video is really helping me understand coding!
I have a passion for computers and technology and like to learn how things work, learning how to program has been on my bucket list for some time now. So tutorials like these are a blessing
He is clearly talking about the ability to recognize and reflect abstract thinking, not necessarily the methods themselves. It's like you are trying to learn russian but with the cyrillic alphabet on top right away. If you can't recognize the letters it will be very hard to form sentences...
Man, I'm really glad I've found a channel just like this... If you're a Unity developer it's a whole treasure for you! I'm just getting started with making games and programming and already want to thank you and your team for all of the stuff you've uploaded and done for us! Hope you're doing great guys! Thank you!
For anyone having WINDOW HEIGHT not changing and other issues: Window height of the terminal can't be changed on Windows 11, it uses a new terminal that can NOT be resized with Console.WindowHeight, or any other simple method that I could find. For all the comments who are having other issues, this is actually the SECOND video in this series, despite being titled E01. The first one is called "HOW TO PROGRAM - Getting Started!". That video covers the setup of everything, just follow it very closely or you'll get frustrated, especially if you're new. Hope this helps someone, so they don't burn over a half hour on the window size thing like I did. Just skip it.
Thank a million, kind sir or madam! I spent 5 or 10 minutes trying to figure out how the heck I could screw up something so simple. Much appreciated! You have saved me some of the most precious resource in the universe...... TIME!
thanks i was looking for this. the only other problem i had, was when i ctrl+shift+p and choose Generate Assets for build and debug, it says " Generate Assets for build and debug not found" if i try it again it says it again, but if i try for a third time it works as intended and creates up the json file. very odd, it didn't happpen yesterday only now.
I know a lot of programming languages on a reasonable level, I make low level system programming in C mainly. Brackeys: How to program Episode 1 Me: Well, time to watch
I'm just looking for what do I need to add to a winforms project if I'm doing it in VScode vs visual studio, Searching this returns the same canned answers, C# has more "canned answer" style of video and post than any other language
I just stared your "How to make a video game in Unity" series and now ur posting a series on how to program in C#, damn, right on time! Thanks for helping us out mate!
@@jcdenton9614 oh i thought he died or sum. was fr sad bro cuz his tutorials are fire but im thinking of switching to python tho b4 i get invested in c#
Hi Brackeys im a coding noobie i dont know anything about coding but i had seen your videoes about coding and i think its pretty cool so im gonna start to learn to code with you, Yes im going to learn c# as my first language thanks for helping me learn Brackeys please keep your videoes going .
Man I was so focused on trying to understand your tutorial and this was easy to understand. You are an excellent teacher, I am anxious to learn more so I am subscribing thank you!
Thanks a lot for this video series, it explains everything much better. Normally you just have the teacher saying "yeah thats the code learn that", but instead actually learning what it does, where its coming from and what does what exactly is a lot of help.
I'm not an expert, but to my understanding the use operators (like '.' {the dot} and '{}' {brackets}) is to delimit different portions from code, for organizational purposes. Whatever operator is used in pretty arbitary, some languages don't use semi-colons, etc, etc. If it helps, just think of it as symbols that tell your computer what some random line of code does. For a common example in math, '5 + 5' just means add five things to another five things.
"[]" are (to my understanding) used for arrays. You can think of an Array as filing cabinet for your code. Example: You say hey computer get me what's in Array #3 and ÷ it by what's in Array #6 ([3]÷[6]=X) "." are used to summon blocks of code known as cyberdeamons or a "method". Methods are blocks of code that do things that have a name and belong to a class.
very helpful, I am learning how to use visual studio for a class and I felt like I was missing a lot of the straight forward lines of code. Thanks for the great video, it helped me get an idea of what to do!
@@someoneelsenone822 True. Honestly, I like how VS works. So many quick features, pretty intuitive to use. Sure, it's not the fastest way to work with C# but imo it's the best. Especially when working with things like WinForms/WPF where VS tools are really helpful.
I think it's because it's lighter and and can work on any PC and also because it doesn't have a lot of scary options and parameters for beginners, idk XD Btw I like how you did the Michael Reeves reference lol 😂
Dude I just discovered this channel and it’s so enjoyable, like he teaches it really well, and if I was at home I’d be having so much fun creating my own program
Hey, so I am starting these tutorials at the end of 2022 and inside Visual Studio my "lines of code" inside Program.cs is "simplified" I guess would be the best term. For instance, my "hello world" application is only 2 lines, console.writeline and console.readkey(). Other articles I've read seem to say that this will work (and my hello world works) but I can't get over the feeling that I am missing valuable information among other things by not having the same "extended" format as are in your videos. Do you or anyone else think I need to revert the formatting to match what is in these videos or is this extra\extended version just not needed now? And does anyone know the way for me to revert the formatting to this method as shown in your videos? Thanks for any help
You can change it by putting "dotnet new console --use-program-main" instead of just "dotnet new console" on the terminal, at the beginning of the creation project/program. =)
This is already kind of frustrating, but also rewarding. I spent like 10 mins trying to figure out why the program that he told us to make at the end wasn't running, and its cause I missed a single semi-colon. When you finally fix it and get it up though it feels nice.
Me watching how to program with c part 1: making games are so easy. I know I will become a programmer when I will be 15 only. Me watching part 2 : just a little bit coding I can manage it all easilyy. Me watching part 3: Not so much difficult just a bit harder than I thought. Me watching part 4: hello darkness my old best friend
I'm so glad we have tutorials like this.
yup, time for coding
Golden age for information. God bless the internet.
F for the latest news
This comment didn't age well
Hey do any of you know why or how cause my computer doesn't show any colors and whenever I do the period it doesn't show anything. H e l p.
"Dont worry, we can ignore everything except..."
*highlights everything*
DREAMED
Lol
I mean, he's not wrong
@@axywrll6015 bro, 🤣
Me: Learn C#
2 Days Later
Brackeys: How to Program in C#
Same lol
He know wat we need for dis time!
he is western spy
He is the angel 😇 under your bed lol
same
Console: I’m gonna destroy the world
Also console: what’s your favourite colour
Yep, that’s Asbjørn for you xD
Favorite color: death
motor oil is my favorite color
If you choose the wrong color, he will destroy the world.
Hey do any of you know why or how cause my computer doesn't show any colors and whenever I do the period it doesn't show anything. H e l p.
I wanted to learn to code and I immediately tried to make a game and gave up. Now this is something I CAN do
I did the same and I just failed
A tip. Take breaks
Another tip WATCH EVERY BRACKEYS VIDEO really well explained
Raveendra Ramani I already did that, even though I didn’t code :)
You most certainly failed because you did not start from the beginning. Like maths, you can't learn calculus before knowing how to multiply.
Take it step by step, and you will be able to create a game eventually, good luck!
I’ve been learning Unity and C# for a week or 2 now and made a couple of simple games thanks mostly to you. But sometimes I send a text to someone, I end it in a semicolon not a full stop 😆
Thanks Brackeys
hello mr;
that's so funny!;
Awesome bro;
Console.WriteLine(“If I’m not careful, I may start speaking in code exclusively.”);
Console.ReadKey();
Hello Mr; MK Wraith
Brackeys literally covers every topic its great. I have learned more from this channel than most courses and am starting a beginner series now as well inspired by this. Thanks for the years of great help.
hey bro can u tell me the beginner series inspired by this?
5:35 I know that making the window height larger isn't that exciting, but knowing how precise you need to be with code, while being a beginner it makes me so happy to see little things like that work perfectly.
I know the stuff and coding, and i know everything in this videos already but...
This is still entertaining
Yea, same. I already know A LOT of stuff. However its nice to watch *NEW* tutorials by amazing people!
using UnityEngine
{
Debug.log()
“Me too”;
}
using UnityEngine;
bool iThinkTheSameThingAsYou;
void Update()
{
if(bool == true)
{
Debug.Log("same");
}
}
Trolllolol 😭😢😢😢
@@nikoskonstantinou3681 i couldnt agree more, like a bunch of us know a lot of vfx graph, gfx graph, i watched how to make an rpg tutorial, first tutorial i watched from brackeys is "how to make a game".
PLEEEEAASE, keep the series up! Your tutorials are simply the best available for free, even better than some paid ones.
@Most Videos On A Channel Ever yeah I know :/ I commented before it happened
Hey Brackeys, I just wanted to thank you. You coincidentally uploaded this video one day before my summer schedule, and I added C# on the list now. I'm really looking forward to the next episode, and I really hope you continue this series!
It has never felt so good to see a little box with text. THANK YOU BRACKEYS!!!
You could also store the user's name in a variable to use it in later sentences:
String UserName = Console.ReadLine();
Console.WriteLine("Hello, {0}, I am your father.", UserName);
The {0} is there to import the 0th (1st) variable from the list on the right into your text. You could add more variables by doing {1}, {2}, and so on.
string UserName = Console.ReadLine();
Console.WriteLine($"Hello, {UserName}, I am your father.");
um does the not know his father 😂
child* does the child not know his father??
Thx
@@dirhi System.out.println(“NOOOO!! That’s impossible!!”);
Tried a few C# tutorials, but this one was by far the best. Looking forward to part 2.
he quit youtube lol
@@Simon-io7jt Maybe, I am late. But he did some videos of C# tutorials before he left.
Whenever we need him he posts
This comment did not age well
@@griffinheatley1908 it did not
@@griffinheatley1908 really didn’t
It aged well again.
This is SO helpful! It's simply broken down and explained in a way that even someone who knows nothing about programming will begin to learn.
thank you for making this series you are helping us a lot to start programming and game development thank you so much
Even the video is 2 yrs old, i just dloaded and type this tutorials and got the result! first time trying this, thank you so much
I learned to code with C++ on Udemy. I just learned the basics I haven’t even made any programs with it it just thought me the basics. This is going to be a good series for beginner programmers for sure.
Brackeys, your video on 'How to Program in C# - BASICS (E01)' is an excellent resource for anyone looking to dive into C# programming. Your explanations are clear and concise, making it easy for beginners to grasp the fundamental concepts. I appreciate how you walk through each step, providing practical examples and demonstrating how to write clean and efficient code. Your enthusiasm for programming shines through, making the learning experience enjoyable and inspiring. Thank you for sharing your expertise and creating such valuable content for aspiring C# developers. Looking forward to the next episodes in this series!
fella are you chatGPT
Yesterday i spent 4hours learning C#
I want to put in 2hours today
the 4 and a half hour course from freecodecamp is great.
Really liking the language, much prefer the syntax over VB script and delphi
heyyy, after 1 year, i made a really simple 3d game with opengl. I came here to thank you, u helped me get started :)
God this is cool. This part always seemed so boring to me but the simple thing of changing colours is so rewarding to know that you did something and it turned out cool. Also alot easier to understand than I expected.
This is perfect. You have the perfect energy and voice for teaching. Thank you for this.
thumbnails are op bro
Ikr!
It's modern
that's what I was thinking! I already know C#, but the thumbnails are next level
indian man
@@steadyblade5446 is that a problem?
Fast, easy and fun tutorials. Absolutely amazing
I just realized how similar Javascript is to c#. I want to be a gamedev when I grow up :) This helps me alot.
This video makes everything so easy, I’m learning some coding as I’m choosing computer science for my GCSEs and this video is really helping me understand coding!
Wow a fellow English lad
That challenge at the end is great! You should keep that through the whole series. Great work! :D
This series is amazing. I already know how to code in JavaScript, but this is really fun. Keep it up!
This is awesome! Your videos inspired me to begin making devlogs on my channe!
For the first time in my life I found such a best UA-camr , teaching well
I have a passion for computers and technology and like to learn how things work, learning how to program has been on my bucket list for some time now. So tutorials like these are a blessing
This is one of the best and funniest tutorials I've ever seen❤
Keep it going
teaches us the two most basic lines of code "now I know this might be a lot to handle"
because it is
He is clearly talking about the ability to recognize and reflect abstract thinking, not necessarily the methods themselves. It's like you are trying to learn russian but with the cyrillic alphabet on top right away. If you can't recognize the letters it will be very hard to form sentences...
@@dyingsun7857 good way to word it out actually
Man, I'm really glad I've found a channel just like this...
If you're a Unity developer it's a whole treasure for you! I'm just getting started with making games and programming and already want to thank you and your team for all of the stuff you've uploaded and done for us! Hope you're doing great guys!
Thank you!
For anyone having WINDOW HEIGHT not changing and other issues:
Window height of the terminal can't be changed on Windows 11, it uses a new terminal that can NOT be resized with Console.WindowHeight, or any other simple method that I could find.
For all the comments who are having other issues, this is actually the SECOND video in this series, despite being titled E01. The first one is called "HOW TO PROGRAM - Getting Started!". That video covers the setup of everything, just follow it very closely or you'll get frustrated, especially if you're new.
Hope this helps someone, so they don't burn over a half hour on the window size thing like I did. Just skip it.
Thank a million, kind sir or madam! I spent 5 or 10 minutes trying to figure out how the heck I could screw up something so simple. Much appreciated! You have saved me some of the most precious resource in the universe...... TIME!
thanks i was looking for this. the only other problem i had, was when i ctrl+shift+p and choose Generate Assets for build and debug, it says " Generate Assets for build and debug not found" if i try it again it says it again, but if i try for a third time it works as intended and creates up the json file. very odd, it didn't happpen yesterday only now.
Fast and clear, unlike every other tutorial. Thanks again, you're awesome
Who went to comments right away?
without dislikes to tell me if the video is bad i have no other choice
Caught
Me
Always!
not me
*moment of realization*
Best tutorial ever I have seen on c# thank God I found your channel thanks for tutorials man
I know a lot of programming languages on a reasonable level, I make low level system programming in C mainly.
Brackeys: How to program Episode 1
Me: Well, time to watch
Going to be honest, stumbled across this channel, and by far the best thing that's happened! Thankies
real followers of brackey knows they have done this series before 😏
@@booty_mcscooty yep
:DDDDDDDDDDDDD
Not necessarily real, just old :)
I'm just looking for what do I need to add to a winforms project if I'm doing it in VScode vs visual studio,
Searching this returns the same canned answers,
C# has more "canned answer" style of video and post than any other language
@@tyrrelldavis9919 It's impossible to develop Winforms or WPF apps in VSCode. Use Visual Studio.
I just stared your "How to make a video game in Unity" series and now ur posting a series on how to program in C#, damn, right on time!
Thanks for helping us out mate!
Who else already knows C# but watched this whole video anyways because they love Brackeys?
✋
😂🙌🏼
No
Not me I started today lol
Not me (lol)
This is fantastic way to teach C#. I am a rookie in programming and I hope to get better as time goes on. Please do make more videos.
I have some bad news...
@@jcdenton9614 whats that
@@clyf7978 Check their latest video.
@@jcdenton9614 oh i thought he died or sum. was fr sad bro cuz his tutorials are fire but im thinking of switching to python tho b4 i get invested in c#
Me :waiting for friend to respond
Friend: responds
Me: *ignores and watches brackeys video
hehe
Hi Brackeys im a coding noobie i dont know anything about coding but i had seen your videoes about coding and i think its pretty cool so im gonna start to learn to code with you, Yes im going to learn c# as my first language thanks for helping me learn Brackeys please keep your videoes going .
Me : stuck at home doing nothing
UA-cam recommendation : wanna learn how to program c# ?
I searched for this actually
His videos have so much energy and information. They're the best
Him: "so, the time has come for you to write your first lines of code
Me: "OOOOOOOOOOOHOOOOOOO!!!!"
after a year, this is still better than alot of paid courses
good!
This is a tutorial of how to code thats sponsored by a coding tutorial
jason weimann is a great dude, I have been following from the long time
Rocket Egg same, he is quite good ngl
Man I was so focused on trying to understand your tutorial and this was easy to understand. You are an excellent teacher, I am anxious to learn more so I am subscribing thank you!
who needs actual classes when we have brackeys!
edit: had
Sadge
Awesome video yet again! I'm learning so much!
me: Console.WriteLine("Hello, my name is Destructive-88");
Console.WriteLine("Whats yours?");
Console.ReadLine();
MOM! DAD! I LEARNED HOW TO CODE!!!!!
That's litterally what I did lol
He is the no.1 code teacher long live The Brackeys
This makes me feel so stupid when i now realize everything whats going on In unity
What makes you feel really stupid is when you realize what really going on in your computer via linear algebra
Thanks a lot for this video series, it explains everything much better. Normally you just have the teacher saying "yeah thats the code learn that", but instead actually learning what it does, where its coming from and what does what exactly is a lot of help.
I want a more basic tutorial that explains why we put certain things in brackets and other things with a period.
sleepy so do i
Syntax
Spacebars are FORBIDDEN so we use . instead
I'm not an expert, but to my understanding the use operators (like '.' {the dot} and '{}' {brackets}) is to delimit different portions from code, for organizational purposes. Whatever operator is used in pretty arbitary, some languages don't use semi-colons, etc, etc. If it helps, just think of it as symbols that tell your computer what some random line of code does. For a common example in math, '5 + 5' just means add five things to another five things.
"[]" are (to my understanding) used for arrays. You can think of an Array as filing cabinet for your code. Example: You say hey computer get me what's in Array #3 and ÷ it by what's in Array #6 ([3]÷[6]=X) "." are used to summon blocks of code known as cyberdeamons or a "method". Methods are blocks of code that do things that have a name and belong to a class.
Brackeys has saved us all at one point in time
Thank you
learning is easy, waiting for the lesson is hard...
very helpful, I am learning how to use visual studio for a class and I felt like I was missing a lot of the straight forward lines of code. Thanks for the great video, it helped me get an idea of what to do!
but brakeys!, i hear you ask;
"why vs code and not visual studio?"
@@someoneelsenone822 True. Honestly, I like how VS works. So many quick features, pretty intuitive to use. Sure, it's not the fastest way to work with C# but imo it's the best. Especially when working with things like WinForms/WPF where VS tools are really helpful.
I think it's because it's lighter and and can work on any PC and also because it doesn't have a lot of scary options and parameters for beginners, idk XD
Btw I like how you did the Michael Reeves reference lol 😂
Well vs code is lighter
(But according to me vs is better since vs code gave me quite some headache to get started in the past)
For me vs gets unity inteillisense with it but not with vs code idk y
I downloaded both but couldn’t get VS to work, isn’t VS code made for debugging
this video shall inspire programmers across the world
how was that not a headshot yessir
I feel like at this point we're all (Including Brackeys) only here for the FacePalm jokes in the beginning of each episode.
Yep
Brackets, the hero we need! Looking forward to the rest of this series, especially enjoy the challenges!
you said BRACKETS. his name is BRACKEYS.
Me wanting to learn C# for unity as a kid:
"I will do it!"
Me after finding out about this channel:
"He he he he he he..."
Blersh 100 lol
I've been trying to get my head around C# for a class for the last 3 weeks and nothing has worked until I found this video. Thanks!
I have decided to make a "game" where you must recite every other lyric to Rick Astley's "Never gonna give you up"
Horse Man amazing
Genius.
I kinda know c# already but this tutorial still showed me much stuff i didnt think of before, Thx Brackeys =D love all your vids
Blixtdraken 2 yessir
Im yet to see a programming channel that say "Hello, World!" as their intro
Carl Loreto hello world is the default thing when u make a .net file
why are ur toturial so good? this is not fair for the others.
i dont care u r da best
I just finished your challenge with my shitty spaghetti code I think I've learn enough to get hired from Bethesda
Awesome videos! As a beginner, I'm really learning a lot!
Who's from 2024😂
😂 me
Just got on here trying to learn coding lol
Me
Me
Me
Dude I just discovered this channel and it’s so enjoyable, like he teaches it really well, and if I was at home I’d be having so much fun creating my own program
Take a break here then continue scrolling................ you have a really long way down there....⏬
Thanks to you, I made my first ever custom program! THANK YOUUU
7:36 Is that a reference to Detroit: Become Human?
i believe it is a terminator reference
I LOVE THIS SERIES! this is one of the few videos/tutorials atchually that helped me!! :)
Hey, so I am starting these tutorials at the end of 2022 and inside Visual Studio my "lines of code" inside Program.cs is "simplified" I guess would be the best term. For instance, my "hello world" application is only 2 lines, console.writeline and console.readkey(). Other articles I've read seem to say that this will work (and my hello world works) but I can't get over the feeling that I am missing valuable information among other things by not having the same "extended" format as are in your videos. Do you or anyone else think I need to revert the formatting to match what is in these videos or is this extra\extended version just not needed now? And does anyone know the way for me to revert the formatting to this method as shown in your videos? Thanks for any help
Hi, I'm having the exact same issue, any fix?
yep i have the same issue. but its fine you can also write the code, that you see in the tutorial. you can put it manually by typing letter by letter.
@@jhonjhester6682 it's not needed
You can change it by putting "dotnet new console --use-program-main" instead of just "dotnet new console" on the terminal, at the beginning of the creation project/program. =)
Are you using Visual Studio rather than Visual Studio Code?
all right, my very first lines of code and I recreated the riddler and batman conversation, great start thanks for the videos
incredible
Me using code to have an arguement that i win
I have been reading a book for 3 hours now struggling and this legend just made me understand it in 12 minutes.
there is 1 imposter amog us
" " " " ' " " " "
I'm learning C# after watching Brackeys' videos since 2018, it's so cool to actually write code!
Anyone from india 😢
This is actually really helpful, thanks. can't wait for episode 2 :)
Brackeys: I know this can be hard to take...
Me: This is easy as shit!
Edit: Keep up the good work though Brackeys. I am learning along with you! :)
This is already kind of frustrating, but also rewarding. I spent like 10 mins trying to figure out why the program that he told us to make at the end wasn't running, and its cause I missed a single semi-colon. When you finally fix it and get it up though it feels nice.
i tried this and typed literally the exact same thing and it wont work
QuiblyV what are the errors
I like how you preemptively answer the questions of overthinkers like myself. Great video.
Me watching how to program with c part 1: making games are so easy. I know I will become a programmer when I will be 15 only.
Me watching part 2 : just a little bit coding I can manage it all easilyy.
Me watching part 3: Not so much difficult just a bit harder than I thought.
Me watching part 4: hello darkness my old best friend
O h. N o
I was just thinking about learning c# with the old tutorial so happy they are doing this
900$ for a course,. As an asian student im too poor
lmaao
im gonna miss this man and his enthusiasm in his tutorials
Who is from 2025 😅
This will be really helpful when this tutorial is completely finished
It's not when but if.
@@CarsonSmith93 yeah that's another bad possibility :/