Overview of the video 0:50 Singleton Pattern 14:15 Basic concept of inheritance , interface etc 38:10 Factory pattern 50:00 Template Pattern Thank me later :P
The way the tutor explained is clear and understandable. I recommend people to watch this video before starting to code in C#. Great job Sir!! Your work is much appreciated.
recently I failed to answer the basic concepts of object creation and its accessibility in interview, but after watching your video I am sure I can now answer these types of questions. Thank you very much to you and my friend who recommend this video.
I was scratching my head for days to understand this things, I have spend so much money to leran this concepts. none of them make sense to me. But, the ways of explaining was awesome, I can understand them just watching them first time.Thank you Boss.
This is one of the best design pattern tutorials that I ever came across! I enjoyed the way you taught the concepts. Thanks a lot for creating and sharing with us. However, I have one observation which I would like to share here. This is regarding the Template Method Pattern. In that example, the following changes would restrict access to the individual methods from the client: protected abstract void ReadData(); //Updated access specifier from public to protected protected abstract void ProcessData(); //Updated access specifier from public to protected The above changes would ensure that no client can call those ReadData() and ProcessData() separately.
Excellent job dear. Thumbs Up! You covered the most difficult logic of Design Patterns in a single video with so easy and understandable steps. Thank you.
Very nice sir gggg. I have learned so many things from this video. I recommended other students to see this video if they don't have concept of design patterns.
Great video Patrick! just to add, for thread safety sake, you could add public class Logger { private static Logger instance = null; private static readonly object instanceLock = new object(); private Logger() { } public static Logger GetInstance() { lock (instanceLock) { if (instance == null) { instance = new Logger(); } return instance; } } }
Really...........................Great Explanation. no words to explain, and i am requesting here can you please send Azure paas tutorial if you possible . Advance in Thanks
Hello sir, I am very happy to get this video which is really helpful. Can you please let me know how can we get the complete design patterns video as I don't have international pay allowed from my card
Sir I have One Doubt, that is in Factory Class of GetCalulation() objects are creating in runtime based on which object we pass either add, sub, mul. Is it right?please reply me.
Hello sir. I can see your last video was around 1 year back 😥. We miss your tutorials. Im sure too many people are waiting for you... Are you ok ??? Please do reply
Overview of the video
0:50 Singleton Pattern
14:15 Basic concept of inheritance , interface etc
38:10 Factory pattern
50:00 Template Pattern
Thank me later :P
thnx
Factory pattern at 35:37
Thank you
Just paused the video to comment and tell you that "You're fantastic, man!".
Thank you!
@@patrickwashingtondc Really, fantastic way of explanation and clearing doubt on the go. Thanks for the effort you put.
The way the tutor explained is clear and understandable. I recommend people to watch this video before starting to code in C#.
Great job Sir!! Your work is much appreciated.
recently I failed to answer the basic concepts of object creation and its accessibility in interview, but after watching your video I am sure I can now answer these types of questions. Thank you very much to you and my friend who recommend this video.
Perfect explanation, not only pattern logic but c# language too. Great job!
I've came across the best explanation for these concepts so far.
amazing.... this is called concept. You made my day. Thank you
The way to teach is very Smart & Awesome.
Great Instructor!
Great Xplaination!
Great thanks!!
Amazingly explained.. I watched tons of video, but your explanation is just extraordinary. Thanks for sharing.
Excellent, easy to understand all the concepts .
Excellent Teaching...Keep it up Patrick.
Great information , it clears all concepts about singleton , factory & template
Thank you so much
I really appreciate the way you teach.
Excellent !!! super simple thorough explanation, must watch.....
I was scratching my head for days to understand this things, I have spend so much money to leran this concepts. none of them make sense to me. But, the ways of explaining was awesome, I can understand them just watching them first time.Thank you Boss.
Most of the interview questions covered! Explained in very simple and easy to understand manner!
This is one of the best design pattern tutorials that I ever came across! I enjoyed the way you taught the concepts. Thanks a lot for creating and sharing with us.
However, I have one observation which I would like to share here. This is regarding the Template Method Pattern. In that example, the following changes would restrict access to the individual methods from the client:
protected abstract void ReadData(); //Updated access specifier from public to protected
protected abstract void ProcessData(); //Updated access specifier from public to protected
The above changes would ensure that no client can call those ReadData() and ProcessData() separately.
This is the best video, I always refer to this to refresh my concepts and adapt in solution
Clear and easy to understand. Would love to see more about other patterns from this channel.
Great way of explaining everything transparently. Thanks
Gone through many channels and videos but the stuff here is really Awesome
Thank you!
You have explained the factory Pattern very good way. 👍👌
Congratulations and thank you very much for this excellent video!!
This is the best video about patterns I ever saw. Thank you!
Excellent job dear. Thumbs Up! You covered the most difficult logic of Design Patterns in a single video with so easy and understandable steps. Thank you.
amazing, no one has done this , i was looking for these concepts you really helped me, god bless you. Subscribed.. ✌
This is one of the best, if not The best explanation of various design patterns! Thank you for this video.
Best tutorials over internet
Very well explained the concepts in an easy and efficient manner. Well done.
Amazing video very clear explanation it would be helpful whoever start learning about design pattern principles.
I paused the video in between and subscribed your channel. Keep up the good work 👍
thanks a lot, ur explanation is just amazing
Super video Patrick, your teaching style is great, appreciate your video so much!!
Finally someone tells very cleary. It seems you are better teacher than me bro. Thank you so much.
Very nice sir gggg. I have learned so many things from this video. I recommended other students to see this video if they don't have concept of design patterns.
Amazing video, very concise and well explained.
You're a fantastic teacher
Wow thank you so much, it was amazingly described !
Hats off this is the best
Excellent explanation..you are great teacher..clear and concise..Thank you so much..!!
Super clear explanation, thanks so much!
really good explanation sir, you r fully loaded gun.
Wow, that is really great video! East and clear, thank you :)
Advance level programming, thank you...
Dude..your explanation was awesome
You are a really good teacher, thank you.
Man, very amazing explanation
Superb , some of the concepts which you explained is over the top 🙌🏻
Great video amazing info
Great video Patrick! just to add, for thread safety sake, you could add
public class Logger
{
private static Logger instance = null;
private static readonly object instanceLock = new object();
private Logger()
{
}
public static Logger GetInstance()
{
lock (instanceLock)
{
if (instance == null)
{
instance = new Logger();
}
return instance;
}
}
}
Thank you!
superb expanation. i wanna say thank you
Factory pattern is nicely explained
One of the best videos I've ever seen ❤️❤️❤️
Thank you Moustafa.
Very nice explanation Sir👍
What a session... Learnt a lot...👍
The best design patterns video, wonderfully, explained in a most simpler and effective way.
No words, thanks a lot sir!
Excellent 👍💯
very good explanation
This video makes me to subscribe your channel.
Excellent explanation!!!!
This is an amazing explanation.
Thanks much Sir. I'm sure you have delivered excellent lecture. :)
awesome explanation ,,, I purchased the full video
@Kunal Mehta did you get any suggestion on the course?
Really...........................Great Explanation. no words to explain, and i am requesting here can you please send Azure paas tutorial if you possible . Advance in Thanks
This is big help for me. Thank you for sharing your knowledge sir :)
Great vid, clear explanation
Amazing sir !!!!
Best explanation
Best video for understanding design pattern
Perfect Video!!
Amazing explanation.
good explanation and keep on rock
Excellent thank you
Nice video Sir Thank you very much. I think you are Tamilian, from tamil nadu
Amazing video. How one hour passed away i didn't notice.
You are awesome, very clear.
Thank You , You r a coder changer xD
Hello sir, I am very happy to get this video which is really helpful. Can you please let me know how can we get the complete design patterns video as I don't have international pay allowed from my card
this is excellent, thank you
very well explained!!!
You're Programmer's GOD. Thank You
Cool.. Nice explanation.. Thank u
Sir I have One Doubt, that is in Factory Class of GetCalulation() objects are creating in runtime based on which object we pass either add, sub, mul. Is it right?please reply me.
Has anyone purchased the full video?
I want to know how is that? This video was amazing,
good video keep it up!
Great video!
The way of explanation and content is superb and understandable..
Thank you so much..
Great explanation
Perfect :) Very good video
Hello sir. I can see your last video was around 1 year back 😥. We miss your tutorials. Im sure too many people are waiting for you...
Are you ok ??? Please do reply
Nice and simple ! Tnx
Hi Patrick just wanted to know if I buy this course then does this have a limited access or unlimited ??
Hi Bharat, you will have unlimited access.
thanks good video
Excellent, thank u so much.
Excellent
Do you have anything more on design patterns, on Udemy ?
I haven’t published design patterns on Udemy. I have it on my website.
fantastic
You beauty,
are you on LinkdInLearning?
You know.. I thought I understood what it meant to create an object... But what does that actually mean?