Пікірлер
@maq3009
@maq3009 10 ай бұрын
I understood nothing you said. I'm a noob and I understood none of the words you said.
@fistofjustice13
@fistofjustice13 Жыл бұрын
what is a backing field? I'm trying to understand that
@AnotherYouTubeUser581
@AnotherYouTubeUser581 2 жыл бұрын
Hey Elias, if by any chance you will read this i just wanted to say that you are great. Im trying to learn C# for about half a year and I have to say it: Nobody on youtube explains it like you do. Most Tutorials think that the viewer is absolutely stupid or already knows everything. You are the middle-ground that i was looking for. Anyways im kind of sad that you do not make any more videos, but the videos you release are absolutely great nonetheless. Hope you have a great day !!!
@eliasexplains3493
@eliasexplains3493 2 жыл бұрын
Maybe I'll make another video someday. What would you like to see?
@AnotherYouTubeUser581
@AnotherYouTubeUser581 2 жыл бұрын
@@eliasexplains3493 hmmm, maybe the performance differences between instances and static classes? i see a lot of instances usage but it also seems that a lot of the functions could have also been static instead
@RKls-mh5hp
@RKls-mh5hp 2 жыл бұрын
Thanks
@dachuzcorner7083
@dachuzcorner7083 3 жыл бұрын
I want to divide 2 integer numbers 10 /5 and the answer should be 2.000. How to get this. Kindly reply sir. I got the answer as only 2.
@TizzyT455
@TizzyT455 3 жыл бұрын
If you are printing the result and want the proceeding digits use: Console.WriteLine((10 / 5).ToString("#.000")); You will have to cast at least one of the digits to a floating point if you want precision: Console.WriteLine((10 / 5d).ToString("#.000"));
@HaloWolf102
@HaloWolf102 3 жыл бұрын
Great Video, however for a beginner programmer like myself. I 'understand' what you are talking about, yet the point doesn't make itself clear. Basically, I'm dumb. I need more simple words to convince me of whatever you are trying to relay to others. A good practice whenever you are teaching, especially in video format, is to give a simplified summary of what we just learned at the end of the video. Like 'fields are more flexible than public properties, and that is why they are preferred over properties' or 'properties get the concrete data in the memory, and sets it so nothing breaks, which is better over flexibility that a field gives you'.
@alinapostol2230
@alinapostol2230 3 жыл бұрын
Thanks!
@developer20xx41
@developer20xx41 3 жыл бұрын
Great. But its too long. Can you cut out the fluff and get to the point earlier
@tuga2112
@tuga2112 3 жыл бұрын
this is an extremely long video to say "behind the scenes auto properties are a private variable with a setter and getter function, where public properties are a public variable" when the code is compiled, theres no suck thing as a public variable with the name of your property because what exists in the code is a private variable and 2 functions
@rim7961
@rim7961 4 жыл бұрын
That speed difference is insane, never would have guessed that switch actually has some uses outside of looking neat in certain scenarios. Also Yandere Dev could have a look at this
@goosewithagibus
@goosewithagibus Жыл бұрын
It's hilarious you mentioned that. I just game from a video about Yandere Dev and was wondering if the speed actually mattered lol
@ryanheitmann7591
@ryanheitmann7591 4 жыл бұрын
Really insightful, thanks for posting this!
@codegate615
@codegate615 4 жыл бұрын
I got to Derek Banas's section on c# construction properties and started to get confused. You've clarified. I see you're a new channel. With these kind of thoughtful lessons, I'll keep watching! Thanks.