How To Create Extension Methods in C#

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ก.ย. 2024

ความคิดเห็น • 154

  • @khaledbudajaja6137
    @khaledbudajaja6137 ปีที่แล้ว +3

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

  • @BracketGuySerious
    @BracketGuySerious 2 ปีที่แล้ว +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.

  • @hammadiazaiez9337
    @hammadiazaiez9337 5 หลายเดือนก่อน +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  5 หลายเดือนก่อน +1

      I am glad they have been helpful.

  • @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.

    • @jemsworld
      @jemsworld 3 ปีที่แล้ว +3

      That's great can you provide sample extension code implementation for IServiceCollection?

    • @tomthelestaff-iamtimcorey7597
      @tomthelestaff-iamtimcorey7597 3 ปีที่แล้ว +3

      Thanks for the tip

  • @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

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +1

      Glad it was helpful!

  • @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!

  • @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!

  • @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

  • @patyue5012
    @patyue5012 3 ปีที่แล้ว +2

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

  • @usamatabbassum7350
    @usamatabbassum7350 ปีที่แล้ว +4

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

  • @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.

  • @alexsnegir1427
    @alexsnegir1427 3 ปีที่แล้ว +7

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

    • @tomthelestaff-iamtimcorey7597
      @tomthelestaff-iamtimcorey7597 3 ปีที่แล้ว +4

      I noted your recommendation by adding it to Tim's list of possible future topics, thanks.

  • @nancyrohilla3932
    @nancyrohilla3932 3 ปีที่แล้ว +2

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

    • @IAmTimCorey
      @IAmTimCorey  3 ปีที่แล้ว +1

      Glad to hear that!

  • @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!!!

  • @torrvic1156
    @torrvic1156 6 หลายเดือนก่อน

    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.

    • @IAmTimCorey
      @IAmTimCorey  6 หลายเดือนก่อน +1

      Great!

  • @juanminglao3699
    @juanminglao3699 3 ปีที่แล้ว +2

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

  • @Strrroke
    @Strrroke 3 ปีที่แล้ว +2

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

  • @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.

  • @azgan123
    @azgan123 3 ปีที่แล้ว +13

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

    • @rblew131
      @rblew131 3 ปีที่แล้ว

      Seriously!

    • @IAmTimCorey
      @IAmTimCorey  3 ปีที่แล้ว +2

      I’m glad it was helpful.

  • @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}";
    }

  • @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 - th-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

  • @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.

  • @krzysztofpaszkiewicz1274
    @krzysztofpaszkiewicz1274 3 ปีที่แล้ว

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

  • @GBSCronoo
    @GBSCronoo 3 ปีที่แล้ว +1

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

  • @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 - th-cam.com/video/DwbYxP-etMY/w-d-xo.html

  • @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?

  • @whosgotrythm
    @whosgotrythm 3 ปีที่แล้ว +3

    Needed this last week! Thanks though

    • @IAmTimCorey
      @IAmTimCorey  3 ปีที่แล้ว +2

      Well, better late than never, I guess.

  • @stevojohn
    @stevojohn 3 ปีที่แล้ว +1

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

  • @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.

  • @zhujacky7111
    @zhujacky7111 3 ปีที่แล้ว +1

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

  • @tea_otomo
    @tea_otomo 3 ปีที่แล้ว

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

  • @delw1138
    @delw1138 3 ปีที่แล้ว +1

    Another great one Tim!

  • @bekawak6529
    @bekawak6529 10 หลายเดือนก่อน

    awesome tutorial! Thanks

    • @IAmTimCorey
      @IAmTimCorey  10 หลายเดือนก่อน

      You're welcome!

  • @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!

  • @DasturlashniOrganamiz
    @DasturlashniOrganamiz 3 ปีที่แล้ว

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

  • @shaunhunterit342
    @shaunhunterit342 2 ปีที่แล้ว

    Thanks Tim

  • @evgpetra1582
    @evgpetra1582 3 ปีที่แล้ว

    Excellent tutorial! Thank you very much.

  • @maestrowilliam
    @maestrowilliam 3 ปีที่แล้ว

    very well as always. Thanks

  • @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 th-cam.com/video/SXbRu6XcyMY/w-d-xo.html. Visual Studios sharing function and using it to work on collaborated projects.

  • @davidscarso
    @davidscarso 3 ปีที่แล้ว

    Thank you!!! simple to understand :)

  • @scotolivera8207
    @scotolivera8207 3 ปีที่แล้ว

    Every word count, thank you so much

  • @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

  • @ahmedelgendy5363
    @ahmedelgendy5363 ปีที่แล้ว +1

    Thanks a lot. Very Clear Examples.

  • @5h0st001
    @5h0st001 3 ปีที่แล้ว

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

  • @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!

  • @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?

  • @matthewsizemore114
    @matthewsizemore114 ปีที่แล้ว

    Two thumbs up!!

  • @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.

  • @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.

  • @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!

  • @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 10 หลายเดือนก่อน

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

  • @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

  • @Gusdc3001
    @Gusdc3001 3 ปีที่แล้ว

    This could be handy for IEnumerable classes.

  • @adityarane2758
    @adityarane2758 3 ปีที่แล้ว

    It is really helpful.

  • @paulegan3783
    @paulegan3783 ปีที่แล้ว

    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.

  • @ugursinansagroglu3132
    @ugursinansagroglu3132 3 ปีที่แล้ว

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

  • @TutorialsMethod
    @TutorialsMethod 3 ปีที่แล้ว

    Please also make video on identity server4!!

  • @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! :)

  • @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.

  • @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

  • @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 }");

  • @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.

  • @OnoderaMyGirl
    @OnoderaMyGirl 7 หลายเดือนก่อน

    ty

    • @IAmTimCorey
      @IAmTimCorey  7 หลายเดือนก่อน

      You are welcome.

  • @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.

  • @miktin7008
    @miktin7008 3 ปีที่แล้ว

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

    • @IAmTimCorey
      @IAmTimCorey  3 ปีที่แล้ว

      It is in the description.

  • @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 TH-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"

  • @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())

  • @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.

  • @mehdiabdallah6780
    @mehdiabdallah6780 3 ปีที่แล้ว

    It seems like visitor design pattern

  • @adolfkweismann1471
    @adolfkweismann1471 3 ปีที่แล้ว

    Yeah .. Oriented choose implements .

  • @petrutarabuta5617
    @petrutarabuta5617 3 ปีที่แล้ว

    Thanks!