How To Create Extension Methods in C#

Поділитися
Вставка
  • Опубліковано 22 лип 2024
  • Extension methods allow us to add functionality to systems we don't control. They also allow us to write code that is easier to read. In this video, we are going to go over what extension methods are, how to write them, and when to use them.
    Source Code: leadmagnets.app/?Resource=Ext...
    Mailing List: signup.iamtimcorey.com/
    Purchase Courses: iamtimcorey.com
    0:00 - Intro
    3:16 - Creating and using extension method
    8:15 - Extension method classes and namespaces
    10:59 - Extending methods from third party libraries
    19:48 - When to use extension methods
    21:30 - Extending methods for interfaces
    23:03 - When not to use extension methods
    27:01 - Summary and concluding remarks
    Thanks Ralfs HBK

КОМЕНТАРІ • 154

  • @khaledbudajaja6137
    @khaledbudajaja6137 Рік тому +3

    So many tutorials on the web, but I get the feeling your are the dean of developers.

  • @minitycui9862
    @minitycui9862 3 роки тому +3

    Great video. Tim, thank you for such a detail, organized, and straightforward demonstration of method extension. You really are making C# easy.

  • @smarthumanism3221
    @smarthumanism3221 3 роки тому +2

    Wonderful, very helpful lecture this is! Thanks, Tim. After seeing this class, I am eager to know the counterparts on properties or fields.

  • @DodgerDude74
    @DodgerDude74 2 роки тому +2

    Thank you! I followed the tutorial and then created the .sln/.csproj on my own. Very nice intro to extension methods. Now, with great power comes great responsibility!

  • @hazlotumismo1419
    @hazlotumismo1419 3 роки тому +1

    I'm very happy because this is the first time I did know how to do all the things that this video has demonstrated. Yeiii!! Thank you Tim, you're the best!!!

  • @chrisspellman5952
    @chrisspellman5952 3 роки тому +1

    I've used extension methods, but only ones I found. I had a bunch saved/bookmarked. I honestly thought it had to do something with how you named things or something in the standard libraries I just wasn't aware of... it was just "this class". It makes so much sense now!

  • @maheshmasanam7721
    @maheshmasanam7721 2 роки тому +2

    It is good video. you explain the start up writing on extension methods in seperate class and meaning the this key word more super. i confused in this understanding but now i am so clear. Thank you tim corey

  • @torrvic1156
    @torrvic1156 4 місяці тому

    Excellent lesson as usual!
    I am using my extension methods for manual mappings when I need to convert Model to DTO and vice versa. It works like charm.

  • @Strrroke
    @Strrroke 3 роки тому +2

    Perfect timing! Just when I thought where to implement extension methods in my pet project for portfolio.

  • @usamatabbassum7350
    @usamatabbassum7350 Рік тому +4

    That was amazing. Learning things so quickly with these tutorials. Thanks Tim.

  • @BracketGuySerious
    @BracketGuySerious Рік тому +1

    Gotta say it physically hurt when you put your extension class in the System namespace, good thing you mentioned that it should NOT be used like that.

  • @patyue5012
    @patyue5012 3 роки тому +2

    Perfect timing and found your tournament course also using this technique for the textConnector

  • @mathsdaz
    @mathsdaz 3 роки тому +5

    Thanks for this Tim. One interface I frequently extend in most libraries I write is the IServiceCollection so that setting up dependency injection for the library is easier to consume. I appreciate your expertise on these topics.

  • @nancyrohilla3932
    @nancyrohilla3932 2 роки тому +2

    Thanks Tim. The way you make me understand is awesome.

  • @GBSCronoo
    @GBSCronoo 3 роки тому +1

    Thank you, I have been looking for a good tutorial on extention methods, popped up at a great time.

  • @juanminglao3699
    @juanminglao3699 3 роки тому +2

    Thank you, I had seen these syntaxes before but I never knew what it did.

  • @hammadiazaiez9337
    @hammadiazaiez9337 4 місяці тому +1

    I'm still a student, and I promise you, you will receive a portion of my first salary. Thank you so much for these valuable resources. You couldn't imagine the feeling of joy when I search for a topic and find one of your videos among the results.

    • @IAmTimCorey
      @IAmTimCorey  4 місяці тому +1

      I am glad they have been helpful.

  • @badboydessert
    @badboydessert 3 роки тому +15

    Hi, Tim! You're a great teacher!

    • @IAmTimCorey
      @IAmTimCorey  3 роки тому +3

      Thanks!

    • @prabirchoudhury8375
      @prabirchoudhury8375 3 роки тому

      @@IAmTimCorey
      Request for future discussion Video -
      * there was a thing called Params array in .net standard fmwk. If it still exists,
      A good, elaborate code discussion video on same.
      Thanks

  • @heenachhabra2977
    @heenachhabra2977 3 роки тому

    Thank you for this informative video, I am learning .NET concepts wise and this really helped clarify the purpose of extension methods!

  • @zhujacky7111
    @zhujacky7111 3 роки тому +1

    Thank you, Tim! It's a great course!

  • @DasturlashniOrganamiz
    @DasturlashniOrganamiz 3 роки тому

    That's exactly what they are demanding me to know. Thanks for awesome content

  • @delw1138
    @delw1138 3 роки тому +1

    Another great one Tim!

  • @tea_otomo
    @tea_otomo 3 роки тому

    Great video and great topic....too many people out there don't use that feature

  • @krzysztofpaszkiewicz1274
    @krzysztofpaszkiewicz1274 3 роки тому

    I knew the first part, but that string at 7.30 just blew my mind.

  • @evgpetra1582
    @evgpetra1582 2 роки тому

    Excellent tutorial! Thank you very much.

  • @alexsnegir1427
    @alexsnegir1427 3 роки тому +7

    Looking forward to seeing some videos about DDD, Microservices, and ElasticSearch.

  • @whosgotrythm
    @whosgotrythm 3 роки тому +3

    Needed this last week! Thanks though

    • @IAmTimCorey
      @IAmTimCorey  3 роки тому +2

      Well, better late than never, I guess.

  • @bekawak6529
    @bekawak6529 9 місяців тому

    awesome tutorial! Thanks

  • @WTHBrou
    @WTHBrou 3 роки тому

    Hey Tim. What's your opinion in using PostSharp? For example, in logging. And AOP in general. Just going through a Clean Code C# book and it is implementing it to keep some code with DRY and SRP.

  • @davidscarso
    @davidscarso 3 роки тому

    Thank you!!! simple to understand :)

  • @andywalter7426
    @andywalter7426 3 роки тому

    I actually found lots of good use for extending even the string type. For example, I have an extension where a person has a month spelled out and it returns the number from 1 to 12. Another one I have for strings is if a person has a sentence and need to know the month integer found in the string, then I have it as well. Even being able to easily generate a comma delimited list. The truth is even for the simple types like string ,integers, there are many useful extensions that can be created. One good one for int is being able to convert to any enum as long as the number sent matches the number it corresponds to in the enum. There are many other examples of good extensions for all simple types.

  • @RalfsBalodis
    @RalfsBalodis 3 роки тому +2

    0:00 - Intro
    3:16 - Creating and using extension method
    8:15 - Extension method classes and namespaces
    10:59 - Extending methods from third party libraries
    19:48 - When to use extension methods
    21:30 - Extending methods for interfaces
    23:03 - When not to use extension methods
    27:01 - Summary and concluding remarks

  • @kagelind83
    @kagelind83 3 роки тому +1

    Hey Tim, thanks for a great video and channel. Was just also watching your async video. Do u have any plans on making a Thread video as well?

  • @azgan123
    @azgan123 3 роки тому +13

    Holy shit why had no one taught me this sooner! Awesome

  • @maestrowilliam
    @maestrowilliam 3 роки тому

    very well as always. Thanks

  • @adamheeg6000
    @adamheeg6000 3 роки тому

    Love these things. Been using them for awhile, they write and read much easier. I like to wrap existing string functionality so I can do:
    string myString = "";
    if (myString.IsNullOrEmpty()) ...
    and then just have the extension method like so.
    public static bool IsNullOrEmpty(this string str)
    {
    return string.IsNullOrEmpty(str);
    }
    Or better yet, when writing logic to append a middle name...
    public static string AppendIfNotNull(this string str, string textToAppend, string separator = ", ")
    {
    if (textToAppend.IsNullOrEmpty())
    {
    return str;
    }
    return $"{str}{separator}{textToAppend}";
    }

  • @scotolivera8207
    @scotolivera8207 3 роки тому

    Every word count, thank you so much

  • @5h0st001
    @5h0st001 2 роки тому

    what if you want to overwrite a value set by a parent in the extension class?

  • @selmanalfaris3544
    @selmanalfaris3544 3 роки тому +1

    I am new to C# and I really like your way of teaching.I have request could a make a video on various commands in C#

    • @faithyintii8457
      @faithyintii8457 3 роки тому

      Check his videos, he has an intro to c#

    • @IAmTimCorey
      @IAmTimCorey  3 роки тому

      Its overkill, but try this - ua-cam.com/play/PLLWMQd6PeGY2GVsQZ-u3DPXqwwKW8MkiP.html. There is no 10 min video for it, but you can grow your skills in a logical path.

    • @selmanalfaris3544
      @selmanalfaris3544 3 роки тому

      Thank u Tim keep up the good work

  • @shaunhunterit342
    @shaunhunterit342 2 роки тому

    Thanks Tim

  • @rianbattle
    @rianbattle 3 роки тому

    Your videos have been REALLY helpful. Thanks for everything you do!
    Question: will you be doing anything on TDD? I'm having trouble wrapping my head around it...mainly where and how to start. I'm about to start developing a new website for my work and am trying to wrap my head around TDD for it

    • @tomthelestaff-iamtimcorey7597
      @tomthelestaff-iamtimcorey7597 3 роки тому

      Nothing up to this point. I have added your recommendation to Tim's list of viewer suggestions for videos.

    • @vatimi
      @vatimi 3 роки тому

      @@tomthelestaff-iamtimcorey7597 pun intended.. at first glance I thought the name was anti-this-channel

  • @adityarane2758
    @adityarane2758 3 роки тому

    It is really helpful.

  • @yvinda.landsnes614
    @yvinda.landsnes614 3 роки тому +1

    Hi Tim. Would you consider it a good practice to implement serialization as extensions to model classes? You touched on it briefly in your video, but it occurred to me that implementing serialization as extension methods makes it easier to switch from say XML to JSON without having to touch the model class(es). You just have to write some new extension methods. Or is it a better way of implementing serialization?

  • @mahmoudwizzo7823
    @mahmoudwizzo7823 3 роки тому +1

    thank you Tim , can you please how we can Mock Testing our Extention Methods as they are static

    • @tomthelestaff-iamtimcorey7597
      @tomthelestaff-iamtimcorey7597 3 роки тому +1

      I added your suggestion to Tim's viewer requests list. In the mean time, have you watched this video on Mock testing from Tim - ua-cam.com/video/DwbYxP-etMY/v-deo.html

  • @fzamick
    @fzamick 3 роки тому

    Great video! I'm looking for somethings similar but for properties. Any way to do this in c#?

    • @IAmTimCorey
      @IAmTimCorey  3 роки тому +2

      Extension methods apply to types, so that means properties. For instance, if you have this code:
      public string FirstName { get; set; }
      Then this extension method would apply:
      public void SayHi(this string name) => Console.WriteLine($"Hi { name }");

  • @aduenos
    @aduenos 3 роки тому

    Excellent video, should have learned this sooner! For a future video, would it be possible to do more in depth mvvmcross videos? Thanks for all the great content, best teacher ever award!

    • @tomthelestaff-iamtimcorey7597
      @tomthelestaff-iamtimcorey7597 3 роки тому

      Thanks for the recommendation. I have added it to Tim's list of viewer suggestions for videos.

    • @aduenos
      @aduenos 3 роки тому

      @@tomthelestaff-iamtimcorey7597 Could not ask for more, Thanks!

  • @matthewsizemore114
    @matthewsizemore114 Рік тому

    Two thumbs up!!

  • @bryanstewart9095
    @bryanstewart9095 2 роки тому

    Hey Tim, Am I able to extend Form to add a property? I want Form to have a selectedItems property

    • @IAmTimCorey
      @IAmTimCorey  2 роки тому +1

      Yep. It is a class so you can treat it like any other class.

  • @adoms0
    @adoms0 3 роки тому

    Idea for next video topic: SharedProjects - what is it, when use it, pros/cons. Thank you.

    • @tomthelestaff-iamtimcorey7597
      @tomthelestaff-iamtimcorey7597 3 роки тому

      Tim addresses a lot of that in ua-cam.com/video/SXbRu6XcyMY/v-deo.html. Visual Studios sharing function and using it to work on collaborated projects.

  • @petrutarabuta5617
    @petrutarabuta5617 3 роки тому

    Thanks!

  • @ahmedelgendy5363
    @ahmedelgendy5363 Рік тому +1

    Thanks a lot. Very Clear Examples.

  • @ViatorRus
    @ViatorRus 3 роки тому

    I think that key word is "extension". Somethings not needed in my real program-flow. Is it right? 😉 But your lesson is landed right. .. ;) sorry for my english.

  • @stevojohn
    @stevojohn 3 роки тому +1

    If you're not careful with extension method use, it can really make unit testing hard.

  • @holyshit922
    @holyshit922 2 роки тому

    Complex numbers class from Numerics does not have any Parse method
    "Prototypes" of this Parse methods can be
    public static Complex Parse(string? )
    public static bool TryParse(string? out Complex)
    Can this methods be written as extension methods

  • @stephan_smit
    @stephan_smit 3 роки тому

    Tim have you ever done something on Merge Conflicts in VS?

    • @tomthelestaff-iamtimcorey7597
      @tomthelestaff-iamtimcorey7597 3 роки тому

      Tim has a couple videos on VSCode which can be used to resolve issues like Merge Conflicts. I would post the links but UA-cam deletes the comment if I do. Video names are "Intro to VSCode for C# Developers - From Installation to Debugging" and "Real-time Collaboration with Live Share in Visual Studio and VSCode"

  • @ronaldoperes1202
    @ronaldoperes1202 3 роки тому

    Hi Tim,
    How about the performance of an extension method? how can we measure it?

    • @RalfsBalodis
      @RalfsBalodis 3 роки тому +1

      You time it with a stopwatch.

  • @ugursinansagroglu3132
    @ugursinansagroglu3132 3 роки тому

    It was really good. But all methods are void because of the logging operation doesn't need a return type.

  • @DavidSmith-ef4eh
    @DavidSmith-ef4eh 3 роки тому +1

    If you wanted to add features to a 3rd party library, wouldn't it make more sense to create something like a proxy to it and put the helper methods in the proxy instead? Dart supports extension methods too (seems like they are copying c# features or the other way around). Either way, I didn't stumble on a use case for them yet... I did see other people using them to share methods between classes. Don't know if that's a good use case though.

    • @IAmTimCorey
      @IAmTimCorey  3 роки тому +2

      That's a lot of extra work and it provides you with something you need to support. I don't see how creating a proxy adds value over an extension method. Extension methods are simpler. By the way, you've used extension methods in your C# code even if you didn't know it. Microsoft makes heavy use of them. Almost all of the items off of IServiceCollection are extension methods (AddScoped, AddTransient, AddSingleton, etc.) Also, when we use Dapper, it is basically a couple of extension methods. It extends the IDbConnection interface to add Query and Execute.

    • @DavidSmith-ef4eh
      @DavidSmith-ef4eh 3 роки тому

      @@IAmTimCorey Fair point. I'll definitely keep extension methods in mind. Specially since I already see the pattern being used.

  • @Gusdc3001
    @Gusdc3001 3 роки тому

    This could be handy for IEnumerable classes.

  • @rodrigo6459
    @rodrigo6459 3 роки тому

    I extended DateTime to add a method that can calculate what we call here in Chile Working Days (Mon - Fri) since some stuff will take for example 10 Working Days, and i will like to know on which date those 10 working days will be done, also added an overload that will let you consider the current day as a working day. If any one wants it i can upload to my GitHub... any ways.. i will probably will be modifiying it so you can also pass an array of days you want to exclude from the calculations, lets say you know the 4th of July this year on on Tuesday, since it is not considered as a "working day" you can exclude it, but for now, that is just an idea! :)

  • @yoanashih761
    @yoanashih761 3 роки тому

    I love extension methods because it makes code clean and readable. But I found that it's difficult to write tests against these extension methods since they are all static methods within a static class.( For instance, they cannot be mocked)

    • @IAmTimCorey
      @IAmTimCorey  3 роки тому +1

      This is true. However, you can treat them like private classes and not extract them usually. Just test their effect. You can also override them with an actual instantiated method if you write them against an interface.

    • @yazidarezki3757
      @yazidarezki3757 9 місяців тому

      How do you unit test/Mock a class that uses an extension method.

  • @carstenberggreen7509
    @carstenberggreen7509 2 роки тому +1

    Tak!

    • @carstenberggreen7509
      @carstenberggreen7509 2 роки тому

      Extension methods. So simple and yet so powerfull. Again one of the most elegant and simple explainations. Why spend hours on books when 25 minutes with you along-side brings people up to speed. Love these simple examples and explanations. Supporting you!

    • @IAmTimCorey
      @IAmTimCorey  2 роки тому +1

      Thank you!

  • @mehdi-vl5nn
    @mehdi-vl5nn Рік тому

    Is mixing relevant in the world of C#? If so, can extension methods be used to achieve it?

    • @IAmTimCorey
      @IAmTimCorey  Рік тому +1

      I'm not sure what you mean by mixing.

    • @mehdi-vl5nn
      @mehdi-vl5nn Рік тому

      ​@@IAmTimCorey it was a typo, mixin

  • @navicoo9919
    @navicoo9919 Рік тому

    ily.

  • @miktin7008
    @miktin7008 2 роки тому

    Thanks Tim, are you able to put the link to the source code in the comments?

  • @EduardoAG
    @EduardoAG 3 роки тому

    This is great, now I can create an extension for TextBox that tells me if the text is empty. textbox.isEmpty() looks better than string.IsNullOrEmpty(textbox.Text.Trim())

  • @OnoderaMyGirl
    @OnoderaMyGirl 5 місяців тому

    ty

  • @TutorialsMethod
    @TutorialsMethod 3 роки тому

    Please also make video on identity server4!!

  • @MrFoghorn111
    @MrFoghorn111 3 роки тому

    Ok Tim, here's a challenge for a video. I always hit a speedbump when I'm working with timed loops, so here's a scenario. You have an API project using a SignalR Hub. Anyone can subscribe to your hub to get data over intervals, but you don't want a million queries to be triggered to your database. You settle on a timed loop that 1. Queries the database. 2. Activates your Hub to send messages to it's subscribers. You can use any type of data here... Stock Tickers, Sports Scores... doesn't matter. Architecturally, which timer would you implement, and how would you allow people to get message at custom intervals. Say their choices are to receive messages every 10, 20 and 30 seconds. Also, the loop shouldn't run unless at least one client is subscribed. That would make an interesting video I think.

  • @mehdiabdallah6780
    @mehdiabdallah6780 3 роки тому

    It seems like visitor design pattern

  • @laracarb352
    @laracarb352 3 роки тому

    The way you speak in this video in particular feels faster than usual or it's just me?

    • @IAmTimCorey
      @IAmTimCorey  3 роки тому

      Not sure. I don't think I was rushing, but maybe I was.

  • @adolfkweismann1471
    @adolfkweismann1471 3 роки тому

    Yeah .. Oriented choose implements .

  • @paulegan3783
    @paulegan3783 Рік тому

    Thanks!