Dependency Injection in C# ❘ A Hands-On Guide to Boosting Code Flexibility and Testability

Sdílet
Vložit
  • čas přidán 23. 08. 2023
  • Welcome back to Skill Foundry! Today, our expert Eric Wise will demystify Dependency Injection, a must-know for any coder aiming for better code flexibility and testability. We'll kick off with an overview before diving into hands-on coding, using C# to transform a basic Rock-Paper-Scissors game through Dependency Injection. This tutorial is useful for developers at all skill levels and will also cover common pitfalls and their solutions. After setting the stage with a theoretical framework, we'll transition into a hands-on coding session. Eric takes a straightforward but tightly coupled Rock-Paper-Scissors game coded in C# and demonstrates the transformative process of refactoring it into dependency-injected components using interfaces. This practical example will not only demystify the concept but also show you how to put it into practice in your own coding endeavors.
    ➡️ Whether you're just starting out or are an experienced developer in need of a refresher, this tutorial is crafted to be valuable for all skill levels. We'll also shed light on the common pitfalls developers encounter when neglecting to use Dependency Injection and provide actionable solutions for overcoming these challenges.
    By the end of this video, you'll have a solid grasp of how designing classes for Dependency Injection allows for the swapping of behaviors and facilitates easier unit testing. These benefits, in turn, prepare you for more complex and advanced development projects, making this skill indispensable in your coding repertoire. Don't miss this chance to elevate your development skills. Be sure to subscribe to our channel and activate notifications so you're always in the loop. Thank you for tuning in, and we look forward to assisting you in your journey to becoming a more skillful developer.
    📍 Find Us Elsewhere:
    linktr.ee/skillfoundry
    💬 Did you like this video? Let us know in the comments below!
    ✅ Click here to subscribe to Skill Foundry now!
    www.youtube.com/@SkillFoundry...
    ---------------
    Welcome to the official CZcams channel of Skill Foundry - Learn to Code! Build an Unshakeable Foundation ☑️
    With years of experience in shaping talent across corporate offices, universities, and innovative coding boot camps, we've mastered the art of guiding you from scratch to an employable level of coding expertise. Our ability to deeply understand the challenges you face as an aspiring coder sets us apart. Each video we create is crafted to specifically address these pain points, enabling you to overcome common hurdles. At Skill Foundry, we strongly believe in the transformative power of education. Our mission goes beyond just teaching code; we aim to empower you with the skills and knowledge you'll need to excel in the ever-changing landscape of technology. Whether you're contemplating a career change, fresh out of school, or an enthusiastic self-learner, we're committed to providing you with all the tools necessary for a successful technical education journey.
    ➡️ Our learning approach is distinctive. We're not just about lectures and theory. Our videos blend theoretical concepts with hands-on exercises and real-world projects. This holistic method ensures that you're not just memorizing information but also applying what you've learned in practical, job-relevant scenarios. This means you gain both the confidence and the competence to tackle complex coding challenges, setting you up for long-term success in the industry.
    Expect weekly coding tutorials that range from the simplest 'Hello, World!' to complex algorithms, interactive Q&A sessions with industry professionals, career-building strategies, project walkthroughs, and much more. Our aim is to serve as your all-inclusive resource for coding education.
    Join us in our exciting educational adventure as we equip you with the key skills to excel in tech. Together, let's code your future! So, hit the subscribe button and turn on the notification bell so you won't miss any new videos! 🔔
    ---------------
    💥 Learn to Code! Build an Unshakeable Foundation.
    www.skillfoundry.io/
    📬 Contact us anytime!
    www.skillfoundry.io/contact-us
    ---------------
    #SkillFoundry

Komentáře • 83

  • @SkillFoundryIO
    @SkillFoundryIO  Před 2 dny

    If you like this video and want to learn C# in depth from me, visit www.skillfoundry.io! The learning pathway takes you from zero to professional-level coding skills, but be prepared for rigor and depth. It takes over 700 hours to complete, with 80+ exercises and 12+ substantial capstone projects.

  • @guavavodka
    @guavavodka Před 8 měsíci +10

    If anyone is curious why it's called dependency inversion, it is because instead of the class depending on lower level details (where the choices come from), it now depends on a HIGHER level abstraction (the interface), thus the dependencies were inverted

    • @SkillFoundryIO
      @SkillFoundryIO  Před 8 měsíci +3

      Absolutely! I left that term off the video because most novices only hear about the injection part. 😇
      Thanks for adding more information!

  • @aluminatsulana
    @aluminatsulana Před 6 dny

    This was some incredible explanation!
    I was realy struggleing with the concept at first but now after the video how I even struggled at the first place!
    Great video!

  • @RogerDunder
    @RogerDunder Před měsícem +4

    That was the easiest most clear explanation i found so far, thank you so much!

  • @christianfredrickgerman9170
    @christianfredrickgerman9170 Před měsícem +2

    Thanks. You explain DI so clear and simple that even non programmer can understand.

  • @stressfreesid9498
    @stressfreesid9498 Před 10 dny

    I will say you are the great master teacher. You have extra ordinary skills and techniques for teaching lots of blessing from all who watched this videos.

  • @marceloleoncaceres6826

    GREAT example, thanks for sharing it!

  • @gracicot42
    @gracicot42 Před 6 měsíci +4

    Hi! I'm the creator of the kangaru dependency injection library for C++. What I love about that tutorial is that you teach beginners to do it without a framework. A dependency injection library is only there to automate boilerplate that happens in the wiring code, and not essential for dependency injection.
    Another point (for more advanced programmers) is that technically, dependency injection don't require interfaces to work. union (sum types) or enums can also do the trick when you want your component to let users choose its behaviour, but have a closed set of possible behaviour. This still enable testing without introducing virtual function calls when unneeded.
    In my case, which might be a C++ only thing, adding virtual functions (any overridable function) strictly only for the purpose of testing is smelly code. I try to keep behaviour choices as closed as possible and thus do my DI with concrete types when possible with the choice of behaviour being values inside those concrete types.

    • @SkillFoundryIO
      @SkillFoundryIO  Před 6 měsíci

      Thank you for your kind words!
      I agree on the virtual methods as well, it’s a smelly pattern.

    • @gracicot42
      @gracicot42 Před 6 měsíci

      @@SkillFoundryIO Yeah, but definitely something that will only appear with larger projects, or projects with tight performance requirements. Out of the scope of the video, but still worth mentioning here in the comments :)

  • @martinroa
    @martinroa Před měsícem +1

    This video is gold.

  • @joekimbler
    @joekimbler Před 2 měsíci +1

    Fantastic explanation and example for DI!! You teach both the concept of DI as well as how it is implemented in c#. Simple and to the point. Great job.

  • @PrettyBlueThings
    @PrettyBlueThings Před 2 měsíci +1

    Excellent explanation!

  • @mitkram99
    @mitkram99 Před 9 měsíci +2

    This is exactly the approach we took in our project. OOP in C# is not complete if not done with DI. Dependency Injection was intimidating at first but once you fully understood its principles, you'll get addicted to using it in your OOP implementation.

    • @SkillFoundryIO
      @SkillFoundryIO  Před 9 měsíci +1

      Agreed! There is always a trade-off for complexity, so for really simple things like batch jobs I sometimes skip it, but for the most part you should be implementing it, especially between layers of your project.

  • @julieyeaeun
    @julieyeaeun Před 5 měsíci +3

    Eric you are an AMAZING teacher!
    Sincerely, a former teacher turned programmer :)

  • @ernestocampese
    @ernestocampese Před 10 dny

    Very well explained. Great job, thank you 👍

  • @KnightMirkoYo
    @KnightMirkoYo Před 9 měsíci +3

    Wow, really cool. I've been doing it a lot in my code, but didn't have a complete understanding of how powerful it is

    • @SkillFoundryIO
      @SkillFoundryIO  Před 9 měsíci

      I’ve noticed a lot of tutorials show how but don’t spend much if any time on the why.
      It’s one of the reasons in our courses we refactor projects as we learn new techniques so our learners can better see the difference between novice and professional approaches!

  • @StefanoTurcarelli
    @StefanoTurcarelli Před měsícem

    Thank you so much for this amazing example!

  • @EA33964
    @EA33964 Před 2 měsíci

    Best explanation so far. So glad I found your video. Thanks

  • @schmidtlach
    @schmidtlach Před 29 dny

    I have been searching for weeks and watching tens of videos on the subject. I finally found it on your channel. Thank you for sharing 😂. It's clear to me now. I'm subscribing to your channel 😊.

  • @gregschlitt3847
    @gregschlitt3847 Před měsícem

    Nice work, with a well chosen example

  • @HiwashiYT
    @HiwashiYT Před 6 měsíci +2

    What an amazing explanation for a very confusing topic to beginners like myself, you even added the testing example that so many people mention but never show! Great work, will definitely follow your channel for more content.

  • @investinglearningmachine3951
    @investinglearningmachine3951 Před 3 měsíci +1

    Hey, this is the best explanation and examples. Thank you so much!

  • @alfonzo6320
    @alfonzo6320 Před 22 dny

    This is an excellent video!

  • @panic_seller
    @panic_seller Před 8 měsíci +2

    saw this in a Job Description and Now seeing it on CZcams all in less than 2 hours, The gods wanted me to learn this

    • @SkillFoundryIO
      @SkillFoundryIO  Před 8 měsíci

      Hope it helped! If you want to go deeper into it in C#, check out our main site.

  • @justHeisen
    @justHeisen Před 3 měsíci +1

    You have the perfect pace for teaching.

  • @randallholmes4282
    @randallholmes4282 Před 6 měsíci +1

    Beautiful! Thank you!

  • @user-xp4yq2jd7s
    @user-xp4yq2jd7s Před měsícem

    Thank you sir you’ve saved me ❤️ you way of explaining the concept is really amazing and the example itself is simple. Please explain the dependency injection container too 🙏 thanks again

  • @JanKowalski-ld4ec
    @JanKowalski-ld4ec Před 3 měsíci

    I'd been lookin for good interface explanation until I found your channel. And you did best of what you could. Explained interfaces and DI at once, on working example. Fantastic job! Great content, great teaching approach, wide perspective filled with necessary details without overhelming the learner and topic. All the best for you and your channel!

  • @Salvotation
    @Salvotation Před 8 měsíci +1

    I’m learning programming as a hobbyist and to make my work life easier. I am at the stage where I have learnt the basic C# syntax and solving individual problems. Now trying to start learning OOP, this is a really helpful approach to start understanding it’s uses!

    • @SkillFoundryIO
      @SkillFoundryIO  Před 8 měsíci +1

      Stay motivated! OOP is the hardest part, once you get it the rest is not nearly as difficult to learn.

  • @user-dy1nf2ht9x
    @user-dy1nf2ht9x Před 23 dny

    Amazing video 👌👌

  • @Speak4Yourself2
    @Speak4Yourself2 Před 9 měsíci +1

    NIce tutorial! Thanks a lot! Promising channel.

  • @user-dy1nf2ht9x
    @user-dy1nf2ht9x Před měsícem

    Great video

  • @waynegreen7970
    @waynegreen7970 Před 4 měsíci

    Good content!

  • @Krissini
    @Krissini Před 3 měsíci

    fantastic video, beautifuly explained and an easy to follow and recode example. Thank you!

  • @Director414
    @Director414 Před 2 měsíci

    Great video! You really good at explaining stuff, well done! Impressive. Keep up the good work!!

  • @user-li2dm5rz6l
    @user-li2dm5rz6l Před 2 měsíci

    this was amazon explanation, I love it, thank you

  • @Mamika_AFK
    @Mamika_AFK Před 9 měsíci +1

    Another great video! Keep it up! 😄👍

  • @userman444
    @userman444 Před 3 měsíci

    Thank you! Found something new :)

  • @bamf75
    @bamf75 Před 2 měsíci

    really nicely done...any chance you could do a DI container video?

  • @SeraphixD3
    @SeraphixD3 Před 8 měsíci +1

    Nicely explained

  • @ahmedh2482
    @ahmedh2482 Před 6 dny

    you are awesome

  • @mahmoudmohammed9287
    @mahmoudmohammed9287 Před 9 měsíci +1

    Nice explanation keep it up❤

  • @Decapodd
    @Decapodd Před 2 dny

    made me smile

  • @ninjask8ter
    @ninjask8ter Před 8 měsíci +1

    This video was a great refresher especially after being away from it for so many years! Is there any available code so I can save?

    • @SkillFoundryIO
      @SkillFoundryIO  Před 8 měsíci

      Sorry, I haven't set up a GitHub repository for the CZcams channel. Honestly didn't think about it. I'll put that on my list of things to do this month.

  • @joelmatthews3255
    @joelmatthews3255 Před 13 dny

    Great video. My only recommendation is to maybe forgo the background music. I personally found it a little distracting while trying to concentrate on your voice at times.

  • @CHURUTEInternational
    @CHURUTEInternational Před 4 měsíci +1

    2 questions. are you in your bath tub? and does this work the same if I want to use dependency injection in xamarin forms or MAUI?

    • @SkillFoundryIO
      @SkillFoundryIO  Před 4 měsíci

      1. I’ve been upgrading my gear. Didn’t want to over invest if the channel didn’t take off.
      2. Yes it works the same.

  • @LuisSieira
    @LuisSieira Před 17 dny

    Very good video. Just... I'm not fan of the Iplayer nomenclature... the client of the API you defined does not care if it is interacting with an interface or an implementation. You manager talks to a Player, not to an IPlayer. Same way you interact with a List, not an Ilist, that you can new ArrayList, but the list is not an IList, and the ArrayList is not a ListImpl (I am not fan of the PlayerImpl either).
    You have a public interface Player, and a public class HumanGamer implements Player, and a BipBoopRandomGambler implements Player...

    • @SkillFoundryIO
      @SkillFoundryIO  Před 17 dny

      That’s mostly a c# thing. Most devs use the I prefix.

  • @user-vi7xn1tj9f
    @user-vi7xn1tj9f Před 2 dny

    lol. a switch statement anyone?

  • @SAAbir-si8wk
    @SAAbir-si8wk Před 5 dny

    I can never thank you enough! God, It's a gem! The example, the explanation, the accent, the pace.... it's perfect! damn! 🤌🤌
    One other thing. The background sound-track is so soothing! What's the track name?

    • @SkillFoundryIO
      @SkillFoundryIO  Před 5 dny +1

      Not sure on the music, my editor uses epidemic sound subscription. They have a lot of music like that.