My apologies if I seem tired/agitated on the video ':D This video was my 3rd attempt at recording this since... - My recordings ended up being corrupted - My audio got cut off short (no battery) - My camera ran out of power - I had to use an over complicated way to send my camera files to my primary PC Basicly everything went wrong ':D
@@sh8ma I'm having some technical difficulties with my equipment which is delaying any new videos. I have plans of getting everything fixed but it will be a while before I can afford replacing the broken equipment.
After looking up Enums, because the description in my literature isn't quite good, I found your C# Playlist. Best thing that happened to me for getting into programming.
Thanks, bro! This was super helpful! I watched this a few days ago when I was considering using an enum for a switch statement and couldn't imaging why I would want to convert a string into an enum in your final example. Lo and behold, that is exactly what I ended up needing to do further along in my project. I came back here and got the info I was barely paying attention to the first time. Lol
I say a good way to describe a struct is when you make a class abunch of memory is allocated all over the place for different parts of the class and you dont know where in memory each variable is compared to eachother meanwhile a struct like this would see the 3 elements 2 strings and an int (well it would actually be 2 character pointers and an int but I wont boggle down the details here) and make sure they are in the same order in allocated memory so if you have the memory address of the first character pointer that points to the first string and move 8 bytes forward you know you are at the memory address of the second character pointer that points to the second string. This makes structs a lot better to manipulate but they should only be used when you have a small amount of variables that should be next to eachother in memory If none of that makes sense to you it doesnt matter for C# its more a carry over from being a C based language this stuff matters a lot more in C++ and C when you have total control over the memory
Dear Teacher! :) Could you please talk about what namespace is? How to work with GUI? How can we work with different files for a software, and how make them communicate to each other, like in PHP "class extends blabla"? Please!
when is the next episode coming out ? and how do we transform to the intermediate level ? with all the graphical design and creating an executable stand alone application
You didn't mention this, the Enum.TryParse(string, out) when it sends 0 yes the number 0, or false, to the out variable if it is deemed false,, so you will just send the enum with the value 0 or the value 0 itself to the out variable. Idk if this is correct, i didnt read the Enum documentation
Great Video. I have to know what you said at 8:44 though lol. I listened to it like 5 times and can't make sense of it. Sounds like some random dialect slipped through.
Thank you. I like you make performance, while you coding and then turn to the camera(spectrs), it's look like some educational tv show. About enums, its still the most confusing thing for me. Eng is not my native.
@@nlogozzo If you follow this C# course you will notice that C++ is an easier version of C# :) just a recommendation. It is why I decided to learn C# a few years back.
@@Dani_Krossing I originally was learning c# about 4 years ago however then I switched to Linux and the c# support then wasn't good so I switched to java cause it was most similar and then I learned java. From there I went to python then c++. I like to stick to cross platform languages and c# was really made for windows
Thanks for the cursus dude. One more question! are you Elon musk twin brother? cause every time i see your video i ask myself where did i see you before!!
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreatVideo { class Program { static void Main(string[] args) { string message = "great Video!"; bool videoWasAlsome = true; if (videoWasAlsome) { Console.WriteLine(message); } else { Console.WriteLine("This Video sucked"); } } } }
this guy is so much better than the $90 course I paid for on udemy
My apologies if I seem tired/agitated on the video ':D
This video was my 3rd attempt at recording this since...
- My recordings ended up being corrupted
- My audio got cut off short (no battery)
- My camera ran out of power
- I had to use an over complicated way to send my camera files to my primary PC
Basicly everything went wrong ':D
Just a code snippet: if you write cw and then hit tab it automatically writes Console.WriteLine("");
@@sakkakutamashi1801 Double tab
It actually made great sense to me. Thanks!
Do you have any plan to complete C# courses
i'm desperately waiting for the next episode
@@sh8ma I'm having some technical difficulties with my equipment which is delaying any new videos. I have plans of getting everything fixed but it will be a while before I can afford replacing the broken equipment.
THIS GUY IS AWESOME!!! first he knows javascript and then he also knows game development in unity c#......a true PROGRAMMER!!!
Not Unity C#, I think, But standard C#
Because Unity uses Mono C# to adds more functionality.
After looking up Enums, because the description in my literature isn't quite good, I found your C# Playlist. Best thing that happened to me for getting into programming.
Some people just have that ability to teach with clarity, like this guy ! Thanks a lot :)
OMG ..I had never seen someone teaching codes this clearly and easily... thank you so much
If you stay on RUclips, you gonna hit a million subs! Clear, and to the point! Many thanks!!
Thanks, bro! This was super helpful! I watched this a few days ago when I was considering using an enum for a switch statement and couldn't imaging why I would want to convert a string into an enum in your final example. Lo and behold, that is exactly what I ended up needing to do further along in my project. I came back here and got the info I was barely paying attention to the first time. Lol
and your video the whole playlist is amazing and doesn't leave a gap which doesn't confuse the student its cool keep it up like the details man
I love your setup. Actually seeing you type is just new and refreshing.
I felt like elon musk was teaching me c#. Lmao
Thanks for the video , was very helpful & informative.
Youre the only guy on youtube that truly makes me understand every concept. Thank you so much for making these videos
This is the best way of teaching. You deserve for more subscriber.
Definitely good to know structs. I've never used them but I did have a question about a struct in a pre-interview assessment test
You are the Master! Thanks for your very valuable help!
I say a good way to describe a struct is when you make a class abunch of memory is allocated all over the place for different parts of the class and you dont know where in memory each variable is compared to eachother meanwhile a struct like this would see the 3 elements 2 strings and an int (well it would actually be 2 character pointers and an int but I wont boggle down the details here) and make sure they are in the same order in allocated memory so if you have the memory address of the first character pointer that points to the first string and move 8 bytes forward you know you are at the memory address of the second character pointer that points to the second string. This makes structs a lot better to manipulate but they should only be used when you have a small amount of variables that should be next to eachother in memory
If none of that makes sense to you it doesnt matter for C# its more a carry over from being a C based language this stuff matters a lot more in C++ and C when you have total control over the memory
Dear Teacher! :)
Could you please talk about what namespace is? How to work with GUI? How can we work with different files for a software, and how make them communicate to each other, like in PHP "class extends blabla"? Please!
superb explain ......................................!
☺😍
I like your teaching style
You look like a young Elon Musk.
he kind of sounds like elon
I don't know who you're. I don't understand programming at all, but I love you
"Person" is a small thing?! Kidding, thanks for the great info.
Thank you so much, you'r amazing doing this
Thank You so much, very useful, looking forward to th next one.
when is the next episode coming out ? and how do we transform to the intermediate level ? with all the graphical design and creating an executable stand alone application
Awesome video!
So helpful! Thank you very much!
Thank you for the awesome video.
thank you mmtuts you video it is really really understand with your explain and special you show the code step by step with a example also
keep up the good Work!!
Also question: Why use enums if you can use a readonly array. Isn't that like the same thing except with the array you can specify the data type?
Thanks for this!
You didn't mention this, the Enum.TryParse(string, out) when it sends 0 yes the number 0, or false, to the out variable if it is deemed false,, so you will just send the enum with the value 0 or the value 0 itself to the out variable. Idk if this is correct, i didnt read the Enum documentation
Can you talk about async programming?
Can you go over interfaces in c#?
Great Video. I have to know what you said at 8:44 though lol. I listened to it like 5 times and can't make sense of it. Sounds like some random dialect slipped through.
"so if we were to hover on top of var"
Thank you. I like you make performance, while you coding and then turn to the camera(spectrs), it's look like some educational tv show. About enums, its still the most confusing thing for me. Eng is not my native.
Good Video well done.
cool presentation..love it
So helpful, thanks..
If i had a long connection string and i didnt want to always have to write it out could i use an enum ?
Can you do a c++ series?
I'm not planning a C++ course atm. It might be a future thing.
@@Dani_Krossing I would like to learn c++ as I already know Java & python and I think you are a great teacher
@@nlogozzo If you follow this C# course you will notice that C++ is an easier version of C# :) just a recommendation. It is why I decided to learn C# a few years back.
@@Dani_Krossing I originally was learning c# about 4 years ago however then I switched to Linux and the c# support then wasn't good so I switched to java cause it was most similar and then I learned java. From there I went to python then c++. I like to stick to cross platform languages and c# was really made for windows
I came here for help with a programming book - I'm blown-away. If you had a tip jar, I would send you something :D
Dude you literally saved me
Brother this is the end of tutorial or there will be another episode ? I will wait ur answer, thank u beforehand !
mmtuts is having some tech issues so it'll be awhile until he replaces his equip
@@redrey3339 ok
11:22 "Juice!"
That is the most happy "Juice" I've ever heard
what if i want to search in the entire enum for what strings it has and also know what integer its attached? like a foreach loop
Talk about enums begins 3:23
Thanks for the cursus dude. One more question! are you Elon musk twin brother? cause every time i see your video i ask myself where did i see you before!!
Can we add a space in enum?
thx a lot
what is the difference between Casting and Parsing?
Casting changes the data type. Parsing works on the data
Hey , I'm from India and i like ur tutorials specially css, js, jquery...can you please make tutorials on bootstrap?
great
Wow, I m excited to learn c# from Elon musk. 😁
where is discription
where is link mi dear teacher
Elon Musk teaching C# on youtube
why is it that every time this guy looks at the camera I think for a split second: Elon Mu- oh... I could have sworn...
Dude, can you type a lil bit faster?
Nope ^^
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GreatVideo
{
class Program
{
static void Main(string[] args)
{
string message = "great Video!";
bool videoWasAlsome = true;
if (videoWasAlsome)
{
Console.WriteLine(message);
}
else
{
Console.WriteLine("This Video sucked");
}
}
}
}
elon musk ?
Not well explained.
The 1% that uses Structs for editing Binary files...
Enum does not contain a definition for TryParse! how do I define it?
software elon musk