Hi! Could you make a video about topic "How to handle 2 keys pressed simultaneously in java"? Please... I'm Vietnamese and I'm really looking forward to this
I watched 2 other videos in which the presenters, although very knowledgeable, rambled on incessantly while attempting to explain generics. Your explanation is clear and concise and above all, effective. Keep up the good work, Bro.
Exactly. I feel most tutorials are like that. Too much unnecessary info and jumping from thing to thing, and just skimming through what you want to know. I love when it's just straight to the point like these
I've watched some videos about C# in english and spanish and as far as now you are one of the best choices for learning C# because the way you explain all that thing easy. Thanks!
Not sure how I got away with not using generics in many years of programming, but I wish I had before. This is the most concise explanation I've seen (there are hour long videos on this topic, but this is the best).
A great simple explanation of something I had 'worried' over through the years. I can see now that a long-winded explanation is not necessary. If anything, that long-windedness begins the trip into confusion. I can see no that generics took 'overloading' a step further!! Thanks!!
🤧🤧🤧 I'm in tears, the first language that I learnt is javascript and now in my company we use c#, I have searched a number of videos and articles and they all try to confuse generics as much as possible but this video is a gold mine, I have to scroll down for this video to show up, I will share this channel so others can subscribe to this too, thank you very much bro.
If only the millions of pages of documentation by major companies was only half as simple to understand as this. Thank you for speaking human, most programmers cant anymore.
I am 👌 this close to start worshipping you. It is amasing you can make me feel confident about magical and scary words I always hear in tutorials and courses in 5 minutes.
Thank you! While watching this I've had realizations in which "I could have done that during my functions in xxx" Thank you so much, you explain everything so well
Bro you are the best. Thank you for teaching us about generics. I liked, commented, and shared your valuable video. It needs to he spreaded in order to teach all who are willing to learn. Definitely, a lot of wandering souls who are lost on thia topic 😊 😅
I can't even count the number of videos I've watched on Generics and it still confuses me. After watching this, and the way you kept it simple and straight to the point, I finally get it!! Thank you :)
Thank you ❤ not even my teacher explained this. I wonder how they got hired. However they introduced me to method overloading which you used in first place.
Awesome. I've been searching everywhere for an explanation on this syntax. Finally found it in an accent I understand and with a very easy to understand example. Well done Bro !!!
Wow light bulb moment. So many times I have had code that I try to avoid duplicating and the only difference is the data type resulting in me having to duplicate the code. This is the solution! I am surprised none of the 5 senior Devs at my workplace ever mentioned using generics in the code review though!
I like how you only explain the subject of the video. You explained what generics are, thats it. You could also have explained sorting with generic types but that would be to much info and people might get confused. W bro code.
When he calls displayElements(doubleArray); So in output why does it shows 1, 2 ,3 why not 1.0, 2.0,3.0 thats what he defined right someone please explain
using System;
namespace MyFirstProgram
{
class Program
{
static void Main(string[] args)
{
// generic = "not specific to a particular data type"
// add to: classes, methods, fields, etc.
// allows for code reusability for different data types
int[] intArray = { 1, 2, 3 };
double[] doubleArray = { 1.0, 2.0, 3.0 };
String[] stringArray = { "1", "2", "3" };
displayElements(intArray);
displayElements(doubleArray);
displayElements(stringArray);
Console.ReadKey();
}
public static void displayElements(Thing[] array)
{
foreach (Thing item in array)
{
Console.Write(item + " ");
}
Console.WriteLine();
}
}
}
Hi! Could you make a video about topic "How to handle 2 keys pressed simultaneously in java"? Please... I'm Vietnamese and I'm really looking forward to this
Thanks for code.
Bro we need advanced C# videos.
I watched 2 other videos in which the presenters, although very knowledgeable, rambled on incessantly while attempting to explain generics. Your explanation is clear and concise and above all, effective. Keep up the good work, Bro.
Exactly right?? Damn, why can't they be like this guy, just get to the point and get done with it!
@@UmarAlFarooqi'm from Russia, i even got it, but i knew
Exactly. I feel most tutorials are like that. Too much unnecessary info and jumping from thing to thing, and just skimming through what you want to know. I love when it's just straight to the point like these
This is the shortest but most understandable video on Generics I've found so far! Thanks very much!
To the point. No spending 30+ min just to explain a simple concept. Thanx
I've watched some videos about C# in english and spanish and as far as now you are one of the best choices for learning C# because the way you explain all that thing easy. Thanks!
This is the best explanation of generics I've ever heard. Made it so simple to understand. Great demo. Thanks 🙏
Not sure how I got away with not using generics in many years of programming, but I wish I had before. This is the most concise explanation I've seen (there are hour long videos on this topic, but this is the best).
Holy balls bro I'm taking my first uni course on C# and every one of your videos that I've watched has been an absolute godsend🙏
A great simple explanation of something I had 'worried' over through the years. I can see now that a long-winded explanation is not necessary. If anything, that long-windedness begins the trip into confusion. I can see no that generics took 'overloading' a step further!! Thanks!!
🤧🤧🤧 I'm in tears, the first language that I learnt is javascript and now in my company we use c#, I have searched a number of videos and articles and they all try to confuse generics as much as possible but this video is a gold mine, I have to scroll down for this video to show up, I will share this channel so others can subscribe to this too, thank you very much bro.
If only the millions of pages of documentation by major companies was only half as simple to understand as this.
Thank you for speaking human, most programmers cant anymore.
I am 👌 this close to start worshipping you. It is amasing you can make me feel confident about magical and scary words I always hear in tutorials and courses in 5 minutes.
Best teacher fr
Clearest, most concise example of generics I have come across!
Thank you! While watching this I've had realizations in which "I could have done that during my functions in xxx"
Thank you so much, you explain everything so well
Broooo I hit like after first 5 sec, and the ‘Thing’ just seal the deal 🤝 immediately subscribed! Best 5mins video series !!
this was actually such a simple yet super helpful explanation and great visualized by the example! thank you so much :)
A copiously underrated channel. I love your stuff, please keep it up!
That's some precise explanation about generics. Nice bro!!!
Best clear explanation of why generics I have found. Thank you
Bro you are the best. Thank you for teaching us about generics. I liked, commented, and shared your valuable video. It needs to he spreaded in order to teach all who are willing to learn. Definitely, a lot of wandering souls who are lost on thia topic 😊 😅
Excellent video, always struggled with generics and you've just made me get it in 5 mins.
i never comment, but i must tell u that u are the best and explain concepts straight forward
So well explained! Have been confused about what the means and nobody ever explained it's just something you can name according to your choice
I can't even count the number of videos I've watched on Generics and it still confuses me. After watching this, and the way you kept it simple and straight to the point, I finally get it!! Thank you :)
This is what Perfection looks like ;o
Genius explanations brother
Really Good man.
Thank you Sir for this quick and clear explaination about GENERICS...i understand it a little bit better !!!
Easy to understand and straight to the point. Thank you!
Thank you ❤ not even my teacher explained this. I wonder how they got hired. However they introduced me to method overloading which you used in first place.
Bro your explanation are really simple its really easy to understand . Thank you very much
thank you for these short and effective explaining videos! keep up the good work!
Great, Clear, Concise. Just amazing
Best explanation of generics ever! Thanks a lot.
straight to the point and easy to understand. Thanks Bro Code!
Bro youre an absolute g. You make coding simple af
Awesome. I've been searching everywhere for an explanation on this syntax. Finally found it in an accent I understand and with a very easy to understand example. Well done Bro !!!
0:19 that was such a solid uhhhhhhhahhhhhhhh
Thank you so much, you explained Generics in the simplest way.
You explain so well, bravo Bro.
Clear and straight to the point! Awesome video 👍
Using THING to explain is giving us association. Genius.
short, specific and great. You got a new subscriber :)
So simple! An amazing teacher!
I like your videos since you convert the difficult things to easy
Brilliant explanation in less time 😇
Awesome! This concept is actually very easy to understand.
clear, structured and simple, thanks bro 😉
ّ I learned a lot from you. Thank you so much
Wow light bulb moment. So many times I have had code that I try to avoid duplicating and the only difference is the data type resulting in me having to duplicate the code. This is the solution! I am surprised none of the 5 senior Devs at my workplace ever mentioned using generics in the code review though!
Love your tutorials!
PERFECT. thank you so much sir 🙏🙏
cool video,nice explanation,thanks
Best generics tutorial that i have ever seen
Merci infiniment bro… simple and very precise
thanks bro for your helping, I thought I never understand generic types
I like how you only explain the subject of the video. You explained what generics are, thats it. You could also have explained sorting with generic types but that would be to much info and people might get confused. W bro code.
Thanks bro. It's very helpful ☺️👍
Thank you so much for this ❤
Thank you it was very clear bro!
Straight to the point
very straight forward, thanks bro
Man keep up the good work
Omg, Thanks.. This was so helpful🙏
Why is the double display a whole number and not a decimal?Just curious
HELL YEAH BROTHER! I'LL ALWAYS TYPE THING FROM NOW ON!
Fantastic brooo🖤
you are such a bro, bro
Can we get an example how to use this with multiple add functions for Entity Framework?
Bro, you are AWESOME! You explained something in such a simple and straightforward way; that Tim Corey is a JOKE compared to your content.
Clear and concise
Bro you taught me better than my college professor
🤯Thanks, Bro!
Would be nice too see if it would show decimals and alphanumeric characters also, just to see what the limitations are
ggs, this explanation helped me well.
east or west
bro is the best
Thanks for the video Bro.
so understandable , thanks much
Thanks Bro:)
why doesnt it print 1.0, 2.0, 3.0?
tnx that was grate
👍👍
my lifesaver
I just want to know can we use var or object data types as parameters for methods and a var or object data type in foreach loop?
thank you 🥰
great videoooo
random comment down below. very useful video. thanks!
Thank you
thank you bro!
Thanks bro
yo thank you brother
why not use objects ? :) I made my testing using T and its running any faster..
very useful!
Thanks for pointing out the T Thing part! ^_^
When he calls displayElements(doubleArray);
So in output why does it shows 1, 2 ,3 why not 1.0, 2.0,3.0 thats what he defined right someone please explain
So you can pretty much use generics as a alternative of boxing and unboxing??
thanx😄
Wow nice!
thanks bro
Thanks Bro!
Nice!