🌍 FREE C# Beginner Complete Course! ua-cam.com/video/pReR6Z9rK-o/v-deo.html 🔴 Watch my Complete FREE Game Dev Course! 🌍 ua-cam.com/video/AmGSEH7QcDg/v-deo.html 📝 C# Basics to Advanced Playlist ua-cam.com/play/PLzDRvYVwl53t2GGC4rV_AmH7vSvSqjVmz.html 💬Are you looking for a more guided step-by-step path? 🌍Check out my complete courses! unitycodemonkey.com/courses ✅Learn exactly how I make my Steam games, or how to make games entirely with Visual Scripting, or learn about every Unity Tool and Feature! C# Basics in 10 Minutes! After watching this quick video you should have the knowledge to understand almost everything in all my videos!
I am doing a Zelda project and using Tilemap. How do I write a script where I have to create a trigger, collider, and collision? When I press play, my character does stay on the map. I know I can make collisions, but I need scripts saying when I hit this collision and trigger, it shows in the console? Need advice!!!
The best tactic: -Watch this video, so you understand a little how C# works. -Watch longer and more informative video of C# (this video would help u in lerning it faster). -Watch this video when you dont program after some time so you get back on track.
For a complete beginner, this will go over their head. But after spending some time in a beginner's course and learning code, this is basically a solid cheat sheet and/or solid summary review.
This is really helpful for people who have had some experience with coding in the past. Doesnt seem really beginner friendly since its really fast and it coveres a lot of topics
That's exactly the point of this video, to give you an overview of the language in a tiny amount of time. I've done separate videos on each topic if you want to dive deeper ua-cam.com/play/PLzDRvYVwl53t2GGC4rV_AmH7vSvSqjVmz.html
I'm currently in the process of learning C# as my first coding language, and this is amazing to recap different things i learnt or for remembering stuff after i haven't programmed in a while! Great video!
Hi Stalda, I am starting and as I do not have any nbackground I am finding it hard to understand what variables and functions are. Do you mind sharing how did you start with the basics of the basics? Or did you study it in school?
@@monapop I'm thinking about learning C#, so I have no experience with it, tho I have programmed a little bit in other languages. From what I know, variables are something that holds data, it has a variable name and a value. There's multiple types of variables based of what type of data they hold, as mentioned in the video, for example a number, integer (int) or a piece of text, a string. You set a variable (different in different languages) like this: "var VariableName = VariableValue", for example: "int playerMoney = 50". A function usually have an input and can give back an output. A function in javascript may look like this: function FunctionName(input1, input2) { console.log("input one: " + input1 + " input two: " + input2) }, and when executed like this somewhere: FunctionName("hello", 15) it will print out in the console: "input one: hello input two: 15". A example of a function (in javascript) could be: function AddPlayerMoney(amountOfMoney) { window.playerMoney = window.playerMoney + amountOfMoney }. When the player later should receive 20 money the function could be executed like this: AddPlayerMoney(20). This was very poorly described and I mixed multiple programming languages and you might already have learned this hehe. Anyways, good luck with your coding.
@@monapop C# is probably the wrong language to start with. I would recommend you start with javascript or python to wrap your head around the concepts of programming. Even these can be challenging for a beginner so a few words of advice. Use beginner friendly books/pdf instead of videos. Videos are good to fill gaps in your knowledge but not as a primary source of information. second word of advice, do not be in a hurry. It might take a long time to internalize a lot of the concepts. Let me put it this way, you can quickly learn enough to make small applications like a calculator but once you start to expand the project to say; use a database system you realize you have to take you knowledge to the next level, once you get there you realize even more levels some of which are branched. My point? it can take years to be actually well knowledgeable on one language but the benefit of that is that it makes learning new languages easier and take less time since you aren't learning too many new and alien concepts. Bottom line? Give yourself a number of years dedicating a few hours of your day to learning and you will get there
This video is absolutely solid. Covers so many little 'gotchas' with regards to scope and basic syntax. As someone who switches languages / projects often, thanks for the great refresher!
I learnt more from this than by the entire C# Course on solo learn, Please do this on unity game engine aswell (all stuff like particle system and other)
Excellent video, im trying to get familiar with C# coming from python, and I love seeing a video that doesn't make me yawn while they explain in depth or what a function is, quick and simple is *perfection*
I don’t know if you have already done this, but i am really new to c# and unity, and when I was trying to replicate some of these thing you did my code got jumbled up and i had a ton of errors. There was also a lot in visual studio that I didn’t understand. A guide on the interface of it would be great. Also, it would be nice to learn how to type code more efficiently in VS too, because I am 40 times slower then you lol. Sorry to bother if you have already made guides on these, I was just struggling with it when i tried.
I learned Java about 6 years ago but never really used it so I've forgotten a ton. This was a great jog for my memory since I want to get started with C# for unity. Thanks for these tutorials!
@OmegaGamesOfficial Tbh Jason Weimann, is really good too , but his vids are more Informative about the work field , and the Technologies, not about how u do this and that ! and i can understand it cuz he wanna sell his courses, but code monkey do the opposite and relying on youtube Ads , Courses since the last year, and his own games. So, from my personal perspective ill say: everyone of them can build piece of the junior game developer
I have to be honest. I've watched this video twice through and took notes so it took me around 4 hours to get through and as embarrassing as that is I now feel like I at least 80% understand each of these pieces. If I can do it I promise ANYONE can lol. Oh and thank you so much for these free lessons, you are an excellent teacher and I learned so much. I know almost nothing about coding and I'm glad I didn't give up after watching once and listened to my gut to take notes. I understood much better!
Your videos are perfect to refresh all the fundamentals I've forgotten over the past 4 years while I'm preparing to interview for a new company. Some of this stuff becomes muscle memory and having to explain it in a sucint way is difficult when you haven't done so in a very long time! Thanks a ton!
@@PinkeySuavo I mean I explained in my comment; these things become muscle memory and having to explain them succinctly is something you don't think about doing when you're using it everyday but not explaining it to people
Think of functions as simply grouping some code. Try to visualize how the computer will run the code, so it gets to the line that calls a function and then jumps into the start of that function and goes down line by line until it reaches the end and goes back to where it came from.
If you are a fresh beginner for coding and programming languages, this is not the video for you, this video is best for those already with some basic level of understanding on programming. As a freshie I had absolutely no idea what all the things you typed means and how they would have interacted with programs or how they would run. I think a better title would be C# refresh course or summary. Calling it learning basics is a bit misleading.
If you are a complete beginner then this video has just exposed you to a ton of C# concepts that you can now go research individually in more depth, that's the goal of this video, so you actually understood everything perfectly, congrats!
I took a Udemy course on C# a couple years ago while walking on a treadmill lol so this is helpful. I'm preparing to take your Unity for beginners 11 hour course, because I want to build a game similar to overcooked (but different) so I was super happy to see you had an entire course for Unity like that.
Honestly, I know this sounds kinda dumb but could you make a “using unity for completely brain dead monkeys”. Your videos collectively make a thing that I really want but when I download your files idk how to use them in unity. Super beginner here.
Go to Unity Learn and follow the course Create with Code Live. The course was seven weeks long 1 hour a day and ended just yesterday, but you can access to all the material and the recordings and it's all you need to get into Unity. At the end, me and more than a hundred people published our personal project game.
If you want more noob-friendly content, try to check out blackthornprod or brackeys. I love blackthornprod, he makes his videos really easy to understand in my experience. Of course, there are several other youtubers like that. Just about finding the ones you feel help you the best. Hope that helps :3
@@aequus1567 Thanks for this! I don't even know what a Float is lol. I am guessing when he saids "int" he means integer. Is float a decimal? When you are beginning you need exact definitions as everything is processed much slower.
ha ha yeah, funny when he says 'the basics' and I'm lost 1 min in. I think it's just a lot of new terminology and getting hands on with each part will make sense. e.g. for us to attach an item to an email is simple. But explain to someone who's not used a computer how to browse files, choose the right file type, enter the email title, address and body etc. sounds more complicated than it is.
Thank You! This video is very helpful! Might be also helpful to tag the times of each topic / suggest adding them to the descriptions Keep up the great work, we truly appreciate it :) 0:00 - Introduction 1:22 - Variables 2:15 - Functions 3:09 - Conditions 5:13 - Collections 6:32 - Loops 7:55 - Comments 8:19 - Enums 8:44 - Classes 9:16 - Accessors 9:54 - Scope
heh yup if you know Java you will very easily pick up C#. Check out my complete free course if you want to learn the language in more detail ua-cam.com/video/pReR6Z9rK-o/v-deo.html
Wow, I played Blueprint Tycoon and loved it and now I am here, learning the basics of C# from the guy who made one of my favorite games, it's a small world I suppose!
Can you maybe make part 2 like advanced C# coding,it would be great!And thanks for this it helped me to understand more what was I doing in my programming school
Obviously not everybody who is watching this may have a coding background, but after taking 3 years so far of computer science in college its nice to have multiple languages of programming under your belt as each language you learn makes the next one much easier. Before delving into this series I highly recommend that anyone watch a python programming series as it covers the meanings of each topic in a simple manner that way when moving onto other languages it is less of learning the concepts and more of learning how to write in the new language. I personally see python as a great beginner language due to the simplicity of the code, but its real world applications are limited. After python I'd recommend either C++, C#, JAVA, or HTML. Although the writing styles of JAVA and HTML are significantly different.
Very well done! I used C# several years ago and then got a new job where they use VB. Now they want to move to C#. This was a great refresher! No fuss, just the facts ma'am!
While I did understand a few things a little better, I still struggle to understand the use of most of it. Having some examples of how it can be used to make a game would really help me understand it better. Like.. maybe you could explain stuff as you did and then give an example of how it can be used afterward, explaining what the different parts of the code are good for :)
These are the basic building blocks, all my other videos are practical examples of how they're used. If you fully understand this video you should be able to fully understand every other video.
@@CodeMonkeyUnity I'm just saying this because I find your videos a little hard to understand. It's hard getting into coding when you're a complete beginner. Finding people that explain things so you can understand it is hard.. It was just a suggestion anyway.
@@aequus1567 His other videos can get into more advanced stuff, but not all of them are like this. Still, I suggest you to learn the basics of C# first (pretty much everything in this video), then learn the basics of OOP like inheritance, polymorphism etc. After that, you'll start to understand his videos. He also teaches some important stuff like interfaces, generics, events in the other videos of in this playlist. As for where can you use these informations, it starts to come to your mind when you have more experience. There are tons of tutorials on youtube. Also I suggest you to go through the code one by one, and understand the algorithm behind it. After a while, it starts to come naturally. As he said, it takes practise to learn coding, just like any other skill. Anyone can do it.
@@aequus1567 You are basically trying to learn to play an instrument by learning how to play just one song. Burak already told you and Monkey already told you. LEARN THE BASICS. PIck up a book. Print out hello world. Make tic tac toe, or a hang man (actually do both, and way more basic crap like a calculator). Nobody who knows how to code started learning with unity making their first game. Stop trying to stritch your game with pieces of code you find online and start from the bottom. Books not your style? Can't find a good source? Here: www.khanacademy.org/computing/computer-programming Good luck.
@@aequus1567 So you are looking for advice because you don't understand the basics, but you gonna dismiss the advice if you don't like it? Also, you didn't even look up the link, because it's free basic programing course, including basic game dev stuff, like vectors. No money? Torrent an e-book. No, no, no. The issue is not money, nor is it how you learn. The issue is that you want a quick fix instead of puting in the work to actually learn the craft. Sorry to say it, there are no quick fixes for anything in life. Stop looking for them.
I am a beginner in C#. This actually helped put some missing information into more tangible thoughts. Plus it’s free information. Best type of information.😅
Idk if this is really a BASIC Tutorial. I had to look up everything he was saying and he used a lot of terminology that only someone with previous coding experience would understand. the Function example really confused tf outta me. I didn't know what parameters were or why I needed them. Maybe I'm just stupid. Everyone else seemed to understand it seems
You're not stupid at all, what you just described is the normal learning process. This video is an overview so the goal is to do exactly what happened to you, it's to expose you to all kinds of C# concepts quickly so you can then go research each topic in more detail. Best of luck in your learning journey!
Ya know, I always heard during programming classes one day you're gonna code and everything is gonna "click" in your head. And you know what, that is true, but what they don't tell you is that you're gonna remember all those past projects you looked at your code and thought "man there HAS to be an easier way to do this", and after watching your video on Delegates I literally had that feeling. I took awhile for me to get here, but if it weren't for all those failed attempts I never would've understood a thing from this video. Long story short: keep failing, one day you'll get it.
Coming from dabbling in Ruby, I wasn't quite grasping what the whole "int i = 0;" part of for loops was doing, this (and then finding the documentation via google) helped a lot! Thanks!
now on my third video recommended to watch before continuing with the 10 hour course. 00:00:55 if you missed what template to take once the visual studio starts. either to take console app, blank, without code etc. there is too much information as the visual studio starts. clone a repository, create a new project , continue without code etc. then come back to this bit 00:00:23 unlike others who brag about playing this video at 2X speed. I actually slow it down and repeat to fully understand. of course not all of us are equal programmers with equal abilities no matter how much the current trends tell us otherwise.
Hi www.udemy.com/course/c-sharp-master-the-fundamentals-of-programming/?referralCode=C71E3D6B647D6D9953C2 Check out this course it offers unique content for such a low price. You can also have access to some tutorials for free. It offers: 20 hours video lectures with well-prepared slides PDF Exercise Book with solutions Most of the exercises from the book are explained with dedicated video tutorials After each section, you can test your knowledge with quizzes You will have access to + 50 downloadable resources
Omg!!!!!! This is honestly the best video out there! Seriously covers the basics! You just saved me from watching hours n hours n hours of videos...lol. Thank you Sir!
🌍 FREE C# Beginner Complete Course! ua-cam.com/video/pReR6Z9rK-o/v-deo.html
🔴 Watch my Complete FREE Game Dev Course! 🌍 ua-cam.com/video/AmGSEH7QcDg/v-deo.html
📝 C# Basics to Advanced Playlist ua-cam.com/play/PLzDRvYVwl53t2GGC4rV_AmH7vSvSqjVmz.html
💬Are you looking for a more guided step-by-step path?
🌍Check out my complete courses! unitycodemonkey.com/courses
✅Learn exactly how I make my Steam games, or how to make games entirely with Visual Scripting, or learn about every Unity Tool and Feature!
C# Basics in 10 Minutes! After watching this quick video you should have the knowledge to understand almost everything in all my videos!
Q
i spent half the video wondering how he typed so fast
or are you just speeding up the vid when you type
Maxwell Harris same
I am doing a Zelda project and using Tilemap. How do I write a script where I have to create a trigger, collider, and collision? When I press play, my character does stay on the map. I know I can make collisions, but I need scripts saying when I hit this collision and trigger, it shows in the console? Need advice!!!
The best tactic:
-Watch this video, so you understand a little how C# works.
-Watch longer and more informative video of C# (this video would help u in lerning it faster).
-Watch this video when you dont program after some time so you get back on track.
+ read documentation or books, I found reading make me understand basics or concepts much better than videos.
If there are books you can recommend, can you tell me?
Yes ! Great advice
ye i left C# for quite a while so this is a pretty nice video to help me recall the important stuff
@@swiftypopty1102 i agree with you on that I understand stuff a lot better when i read from an actual book for some reason
For a complete beginner, this will go over their head. But after spending some time in a beginner's course and learning code, this is basically a solid cheat sheet and/or solid summary review.
watching at 2x speed, I lerned c# in just 5 minuts, efficency
stonks
@@dannil5793 exactly what i was thinking
noice
upgrades people, upgrades
Who are you , Who are you so wise in the ways of science?
This is really helpful for people who have had some experience with coding in the past. Doesnt seem really beginner friendly since its really fast and it coveres a lot of topics
That's exactly the point of this video, to give you an overview of the language in a tiny amount of time.
I've done separate videos on each topic if you want to dive deeper ua-cam.com/play/PLzDRvYVwl53t2GGC4rV_AmH7vSvSqjVmz.html
I'm currently in the process of learning C# as my first coding language, and this is amazing to recap different things i learnt or for remembering stuff after i haven't programmed in a while! Great video!
Hi Stalda, I am starting and as I do not have any nbackground I am finding it hard to understand what variables and functions are. Do you mind sharing how did you start with the basics of the basics? Or did you study it in school?
@@monapop I'm thinking about learning C#, so I have no experience with it, tho I have programmed a little bit in other languages. From what I know, variables are something that holds data, it has a variable name and a value. There's multiple types of variables based of what type of data they hold, as mentioned in the video, for example a number, integer (int) or a piece of text, a string. You set a variable (different in different languages) like this: "var VariableName = VariableValue", for example: "int playerMoney = 50". A function usually have an input and can give back an output. A function in javascript may look like this: function FunctionName(input1, input2) { console.log("input one: " + input1 + " input two: " + input2) }, and when executed like this somewhere: FunctionName("hello", 15) it will print out in the console: "input one: hello input two: 15". A example of a function (in javascript) could be: function AddPlayerMoney(amountOfMoney) { window.playerMoney = window.playerMoney + amountOfMoney }. When the player later should receive 20 money the function could be executed like this: AddPlayerMoney(20). This was very poorly described and I mixed multiple programming languages and you might already have learned this hehe. Anyways, good luck with your coding.
c# is best for first language
@@titoeloshhyris2304 true still this day still my favorite language
@@monapop C# is probably the wrong language to start with. I would recommend you start with javascript or python to wrap your head around the concepts of programming. Even these can be challenging for a beginner so a few words of advice. Use beginner friendly books/pdf instead of videos. Videos are good to fill gaps in your knowledge but not as a primary source of information. second word of advice, do not be in a hurry. It might take a long time to internalize a lot of the concepts. Let me put it this way, you can quickly learn enough to make small applications like a calculator but once you start to expand the project to say; use a database system you realize you have to take you knowledge to the next level, once you get there you realize even more levels some of which are branched. My point? it can take years to be actually well knowledgeable on one language but the benefit of that is that it makes learning new languages easier and take less time since you aren't learning too many new and alien concepts. Bottom line? Give yourself a number of years dedicating a few hours of your day to learning and you will get there
This video is absolutely solid. Covers so many little 'gotchas' with regards to scope and basic syntax. As someone who switches languages / projects often, thanks for the great refresher!
Glad it was helpful!
Coming back after 2yrs in a project with TS. Indeed a great help!
as someone whose learned these basics like 20 times, it was nice to have it sped up as a refresher, quick and to the point
Yes, we want this type of video but in more deep, with basic then advance
He doesn't know advanced, he screwed up the basics
@@bcodaPlease don't criticize anyone like this! He had made some very good games like battle royale tycoon published on steam
Billy Coda he made actual games so yes he nows advanced.
@Ancient Warrior because he combines his advanced information with the basic information, when in fact he needed to make it completely basic.
You can write loads of bad code that still works. I don't care what he's made - the stuff he shows here is flawed and teaches bad habits
I learnt more from this than by the entire C# Course on solo learn, Please do this on unity game engine aswell (all stuff like particle system and other)
This! Yes please do this!!!
please do this, i cant find this on youtube
Check out Sebastian Lague.
If you can't find Unity tutorials on UA-cam, you aren't looking.
Billy Coda as far as i know, he doesnt make tutorials
@Billy Coda Thanks, i will try it
What's awesome is the fact that you compressed all the good stuff in 10 minutes and I was able to follow the video without pausing and rewinding.
Excellent video, im trying to get familiar with C# coming from python, and I love seeing a video that doesn't make me yawn while they explain in depth or what a function is, quick and simple is *perfection*
im the oppositw j love when they explain what everything does and is in detail
I don’t know if you have already done this, but i am really new to c# and unity, and when I was trying to replicate some of these thing you did my code got jumbled up and i had a ton of errors. There was also a lot in visual studio that I didn’t understand. A guide on the interface of it would be great. Also, it would be nice to learn how to type code more efficiently in VS too, because I am 40 times slower then you lol. Sorry to bother if you have already made guides on these, I was just struggling with it when i tried.
I learned Java about 6 years ago but never really used it so I've forgotten a ton. This was a great jog for my memory since I want to get started with C# for unity. Thanks for these tutorials!
int is an int, float is a float, and char is char. Wow, great explanations bro. You're a natural teacher!
Int is an integer, a value. Char is a character, which is just letters, and im not quite sure what floats are
@@sml3432 float is decimal numbers man, lea
Why the heck i can understand your 10 minutes video way better then the others who made 1 hour video long? ♥
@OmegaGamesOfficial Tbh Jason Weimann, is really good too , but his vids are more Informative about the work field , and the Technologies, not about how u do this and that ! and i can understand it cuz he wanna sell his courses, but code monkey do the opposite and relying on youtube Ads , Courses since the last year, and his own games. So, from my personal perspective ill say: everyone of them can build piece of the junior game developer
I have to be honest. I've watched this video twice through and took notes so it took me around 4 hours to get through and as embarrassing as that is I now feel like I at least 80% understand each of these pieces.
If I can do it I promise ANYONE can lol.
Oh and thank you so much for these free lessons, you are an excellent teacher and I learned so much. I know almost nothing about coding and I'm glad I didn't give up after watching once and listened to my gut to take notes. I understood much better!
Cool! The fastest C# tutorial I've seen! 🤓👍🧡
Your videos are perfect to refresh all the fundamentals I've forgotten over the past 4 years while I'm preparing to interview for a new company. Some of this stuff becomes muscle memory and having to explain it in a sucint way is difficult when you haven't done so in a very long time! Thanks a ton!
I'm glad the videos have helped you! Thanks!
but you were programming over these 4 years or? these things are hard to forget unless youre talking about C# syntax itself
@@PinkeySuavo I mean I explained in my comment; these things become muscle memory and having to explain them succinctly is something you don't think about doing when you're using it everyday but not explaining it to people
Thank you. Beginner level topics broken down at the perfect pace.
This guy staright up explained everything in the perfect way, with the perfect tone, at the perfect speed.. tysm my guy i needed this(subbed)
I'm glad you liked the video! Thanks!
Finally an approachable C# tutorial. The functions are still like alien hieroglyphics to me though.
I was like that not so long ago. Now I understand it all. I still can't do anything with it, but I was tracking the whole time.
Think of functions as simply grouping some code. Try to visualize how the computer will run the code, so it gets to the line that calls a function and then jumps into the start of that function and goes down line by line until it reaches the end and goes back to where it came from.
If you are a fresh beginner for coding and programming languages, this is not the video for you, this video is best for those already with some basic level of understanding on programming.
As a freshie I had absolutely no idea what all the things you typed means and how they would have interacted with programs or how they would run.
I think a better title would be C# refresh course or summary. Calling it learning basics is a bit misleading.
If you are a complete beginner then this video has just exposed you to a ton of C# concepts that you can now go research individually in more depth, that's the goal of this video, so you actually understood everything perfectly, congrats!
Straight to the point. Great stuff.
I've watched countless C# vids but yours were far more help !
The typing sound is sweet, I wish one day my typing can have a sweet sound like that 😀
I learned more from this single 10-minute Video than I did from the about 14 Lessons I spent in school with my teacher. Such a well done video!
I took a Udemy course on C# a couple years ago while walking on a treadmill lol so this is helpful.
I'm preparing to take your Unity for beginners 11 hour course, because I want to build a game similar to overcooked (but different) so I was super happy to see you had an entire course for Unity like that.
Honestly, I know this sounds kinda dumb but could you make a “using unity for completely brain dead monkeys”. Your videos collectively make a thing that I really want but when I download your files idk how to use them in unity. Super beginner here.
Go to Unity Learn and follow the course Create with Code Live. The course was seven weeks long 1 hour a day and ended just yesterday, but you can access to all the material and the recordings and it's all you need to get into Unity. At the end, me and more than a hundred people published our personal project game.
If you want more noob-friendly content, try to check out blackthornprod or brackeys.
I love blackthornprod, he makes his videos really easy to understand in my experience.
Of course, there are several other youtubers like that. Just about finding the ones you feel help you the best.
Hope that helps :3
@@aequus1567 Thanks for this! I don't even know what a Float is lol. I am guessing when he saids "int" he means integer. Is float a decimal? When you are beginning you need exact definitions as everything is processed much slower.
@@lucozademan999 yeah float is a decimal
ha ha yeah, funny when he says 'the basics' and I'm lost 1 min in.
I think it's just a lot of new terminology and getting hands on with each part will make sense. e.g. for us to attach an item to an email is simple. But explain to someone who's not used a computer how to browse files, choose the right file type, enter the email title, address and body etc. sounds more complicated than it is.
thanks code monkey, i think these c# course-videos are really appreciated for many people, including me. so keep it up!
So, nobody is gonna talk about his lightning speed typing skills. Great intro video btw!
Thank You! This video is very helpful!
Might be also helpful to tag the times of each topic / suggest adding them to the descriptions
Keep up the great work, we truly appreciate it :)
0:00 - Introduction
1:22 - Variables
2:15 - Functions
3:09 - Conditions
5:13 - Collections
6:32 - Loops
7:55 - Comments
8:19 - Enums
8:44 - Classes
9:16 - Accessors
9:54 - Scope
Oh yeah forgot about that, UA-cam now officially supports timestamps so those are helpful.
Thanks!
Surprisingly, this is my first C# video and I was able to do all of this with correct syntax coming from Java
heh yup if you know Java you will very easily pick up C#.
Check out my complete free course if you want to learn the language in more detail ua-cam.com/video/pReR6Z9rK-o/v-deo.html
@@CodeMonkeyUnity Thanks!
Wow, I played Blueprint Tycoon and loved it and now I am here, learning the basics of C# from the guy who made one of my favorite games, it's a small world I suppose!
Awesome! I'm glad you liked the game!
This tutorial explained much better than my instructor.
Can you maybe make part 2 like advanced C# coding,it would be great!And thanks for this it helped me to understand more what was I doing in my programming school
As someone who uses C++, this video understand C# basics in just 10 minutes, as they both are very similar, thank you!
Obviously not everybody who is watching this may have a coding background, but after taking 3 years so far of computer science in college its nice to have multiple languages of programming under your belt as each language you learn makes the next one much easier. Before delving into this series I highly recommend that anyone watch a python programming series as it covers the meanings of each topic in a simple manner that way when moving onto other languages it is less of learning the concepts and more of learning how to write in the new language. I personally see python as a great beginner language due to the simplicity of the code, but its real world applications are limited. After python I'd recommend either C++, C#, JAVA, or HTML. Although the writing styles of JAVA and HTML are significantly different.
No, start with a difficult one and you will find the upcoming easy. You cant learn java after python but python after java.
I am coming from Java and it seems, I don't have to relearn a lot in C#. Nice!
Thanks for this fast crash course!
Yup, if you know Java you will pick up C# very easily
Great video. I currently know how to code in Java, C++ , and python. Needed to refresh C# for a new position. This video was very helpful.
Your channel is one of my Favourite Channel
i just wanted to have a good overview, this video helps a lot
Very well done! I used C# several years ago and then got a new job where they use VB. Now they want to move to C#. This was a great refresher! No fuss, just the facts ma'am!
Nice to see so many csharpers here!
I like putting technology together and being able to code a game can really go well with it Thx dude for making this
Are you 9?
@@Decimated_By_A_Train would that be bad?
This was great. I remembered so many things in this 10 min.
Can you make a video of C# with the newer coding template
What do you mean by that? What "coding template"?
The basics don't change
this was the most useful C# basics video i've ever watched, thanks!
i've learned that C# is so much better than Lua
While I did understand a few things a little better, I still struggle to understand the use of most of it.
Having some examples of how it can be used to make a game would really help me understand it better.
Like.. maybe you could explain stuff as you did and then give an example of how it can be used afterward, explaining what the different parts of the code are good for :)
These are the basic building blocks, all my other videos are practical examples of how they're used.
If you fully understand this video you should be able to fully understand every other video.
@@CodeMonkeyUnity I'm just saying this because I find your videos a little hard to understand.
It's hard getting into coding when you're a complete beginner. Finding people that explain things so you can understand it is hard..
It was just a suggestion anyway.
@@aequus1567 His other videos can get into more advanced stuff, but not all of them are like this. Still, I suggest you to learn the basics of C# first (pretty much everything in this video), then learn the basics of OOP like inheritance, polymorphism etc. After that, you'll start to understand his videos. He also teaches some important stuff like interfaces, generics, events in the other videos of in this playlist.
As for where can you use these informations, it starts to come to your mind when you have more experience. There are tons of tutorials on youtube. Also I suggest you to go through the code one by one, and understand the algorithm behind it. After a while, it starts to come naturally.
As he said, it takes practise to learn coding, just like any other skill. Anyone can do it.
@@aequus1567 You are basically trying to learn to play an instrument by learning how to play just one song. Burak already told you and Monkey already told you. LEARN THE BASICS. PIck up a book. Print out hello world. Make tic tac toe, or a hang man (actually do both, and way more basic crap like a calculator). Nobody who knows how to code started learning with unity making their first game. Stop trying to stritch your game with pieces of code you find online and start from the bottom. Books not your style? Can't find a good source? Here: www.khanacademy.org/computing/computer-programming Good luck.
@@aequus1567 So you are looking for advice because you don't understand the basics, but you gonna dismiss the advice if you don't like it? Also, you didn't even look up the link, because it's free basic programing course, including basic game dev stuff, like vectors. No money? Torrent an e-book. No, no, no. The issue is not money, nor is it how you learn. The issue is that you want a quick fix instead of puting in the work to actually learn the craft. Sorry to say it, there are no quick fixes for anything in life. Stop looking for them.
TY it helped
I learned nearly the same in 10 minutes as i did in a PAID two week course... Great tutorial!
Installed, everything works, thanks!
You know code monkey is really good at coding when he doesn't care about the theme and just does the job.
Helped me take my Python knowledge and prep quickly to learn C#, thanks!
i just had a code monkey ad, while watching him lol
Wtf was youtube thinking
Lol
That's Called Efficency...
I am a beginner in C#. This actually helped put some missing information into more tangible thoughts. Plus it’s free information. Best type of information.😅
I'm glad the video helped! Thanks!
🌍 Code Monkey on Steam!
👍 Interactive Tutorials, Complete Games and More!
✅ Add to your Wishlist! 👉 store.steampowered.com/app/1294220/
Bro really clean and on point tutorial
Hey can you make a video on how to reference diferent objects in unity,it would be very usefull to have an up to date quality tutorial on this.
Thank you for this video, it helped me learn how C# works and helps me start off with Unity
Idk if this is really a BASIC Tutorial. I had to look up everything he was saying and he used a lot of terminology that only someone with previous coding experience would understand. the Function example really confused tf outta me. I didn't know what parameters were or why I needed them. Maybe I'm just stupid. Everyone else seemed to understand it seems
You're not stupid at all, what you just described is the normal learning process. This video is an overview so the goal is to do exactly what happened to you, it's to expose you to all kinds of C# concepts quickly so you can then go research each topic in more detail.
Best of luck in your learning journey!
@@CodeMonkeyUnity I never thought of it like that. Well if that's the case then its a pretty good tutorial then. I do like your other tutorials tho.
You are amazing!!! Love your classes!!!!!
Advanced C# in 10m
Plz do that
And even more
And then more advanced tutorials and then unity tutorials and stuff
you summarized a book in 10 min, thank you
Ya know, I always heard during programming classes one day you're gonna code and everything is gonna "click" in your head. And you know what, that is true, but what they don't tell you is that you're gonna remember all those past projects you looked at your code and thought "man there HAS to be an easier way to do this", and after watching your video on Delegates I literally had that feeling. I took awhile for me to get here, but if it weren't for all those failed attempts I never would've understood a thing from this video. Long story short: keep failing, one day you'll get it.
Yup! Experience is without at doubt the most valuable thing!
Coming from dabbling in Ruby, I wasn't quite grasping what the whole "int i = 0;" part of for loops was doing, this (and then finding the documentation via google) helped a lot!
Thanks!
This video is good to refresh your mind after watching a 4 hour c# tutorial I like it
NO NO NO NO , You are doing it wrong...You should choose dark mode for visual studio
now on my third video recommended to watch before continuing with the 10 hour course.
00:00:55 if you missed what template to take once the visual studio starts. either to take console app, blank, without code etc.
there is too much information as the visual studio starts.
clone a repository, create a new project , continue without code etc.
then come back to this bit 00:00:23
unlike others who brag about playing this video at 2X speed. I actually slow it down and repeat to fully understand.
of course not all of us are equal programmers with equal abilities no matter how much the current trends tell us otherwise.
Yes, If i didn't know another language I wouldn't have understood , it's far too fast for me haha
Yandere dev needs this
This tutorial teached me more than what my school teacher took 1 year to
Instructions not clear I made GTA 6
The last time i coded was in January, this summary really helped
I must be brain dead or something because I have watched this vid like 6 times and I still cant script ;(
What can't you script? With this video you should now know the basics and know what is a variable, function, etc.
probably because he brushes over some of the greater detail, if you can evaluate what youre stuck on you can research it a bit and itll help you a bit
Love this format, thanks!
Если бы я ещё понимал английский)
ты можешь не?
I really needed this after 2 years of not programming in C# 😂.
69 dislikes
Console.WriteLine("nice");
Actually better than many udemy paid courses.
This video is great for who are already familiar with some language(s). Thanks for making it.
Thank god , I found this channel , So helpfull
Hi
www.udemy.com/course/c-sharp-master-the-fundamentals-of-programming/?referralCode=C71E3D6B647D6D9953C2
Check out this course it offers unique content for such a low price.
You can also have access to some tutorials for free.
It offers:
20 hours video lectures with well-prepared slides
PDF Exercise Book with solutions
Most of the exercises from the book are explained with dedicated video tutorials
After each section, you can test your knowledge with quizzes
You will have access to + 50 downloadable resources
This playlist of learning c# is great for making a 2d game in unity!
I'm glad the videos have helped you!
Good thing i am familiar with other languages like C++ and html, This video put me up to speed in learning the basics of C# Thanks Code Monkey!
It's the best course for guys like me who has experience with coding!
Yes this is what i was just looking for. Also, nice typing skills you got there, keep it up!
Super Helping GOOD JOB MAN
I am taking C# for my first coding class in the fall. Thanks. I feel more confident in networking though compared to coding.
Thank you I was able to Master C% in just 10 minutes 😊
Every vid I come across is more like a refresher
I've done some more in-depth videos on some C# topics ua-cam.com/play/PLzDRvYVwl53t2GGC4rV_AmH7vSvSqjVmz.html
Wow! so full-packed of info! Well done!
Great introduction!!
Explain like a pro 😎
A fantastic insight to get a grasp of the language. C# is such a frankenstein, I see a lot of C code inside Java like classes and enclousers.
The best explanation ever. Thanks a lot
Finally!!!! Something that is not only Hello World or printing stuff.
Excellent video for a refresher, thank you
I respect your work a lot
An explanation of how the brackets work "{" would have made this much easier to understand.
Thanks! You Made Code Look Easy! 😊
Omg!!!!!! This is honestly the best video out there! Seriously covers the basics! You just saved me from watching hours n hours n hours of videos...lol. Thank you Sir!
thanks man !...love from India!