C# Tutorial - Internet Download Manager C#.Net Winforms #1 | FoxLearn

Поделиться
HTML-код
  • Опубликовано: 3 фев 2025

Комментарии • 78

  • @mrmakinist
    @mrmakinist 7 лет назад

    we also expect a series of communication codling programs with microprocessors, we are looking forward to your explanations on this subject as subscriptions

  • @venusnusa7067
    @venusnusa7067 7 лет назад

    I love all of ur tutorials. Thank you very much.

  • @satysato3031
    @satysato3031 8 лет назад

    thank you for all your work

    • @foxlearn
      @foxlearn  8 лет назад

      Thank you so much :)

  • @SKbro2008
    @SKbro2008 3 года назад

    Bro, How to make this as default downloader manager
    for example the Internet downloader manager app Directly makes as an default downloader instead of the browser downloading

  • @shafiullahnabavi9081
    @shafiullahnabavi9081 8 лет назад

    Hi How to Make a Chrome Extension for this download manager to copy file URL Automatically when we click on the download link in the web

    • @foxlearn
      @foxlearn  8 лет назад

      Thank you for your suggestion. I'll make the tutorial soon

  • @ducthuan378
    @ducthuan378 5 лет назад

    nice tutorial but how can we make a label that can count download speed of file?

    • @foxlearn
      @foxlearn  5 лет назад +1

      OK. Thank you for your suggestion. I'll upload soon

  • @mrmakinist
    @mrmakinist 7 лет назад

    please do a mini cnc program

  • @Sassan25
    @Sassan25 8 лет назад

    Thanks a lot for about source code.

    • @foxlearn
      @foxlearn  8 лет назад

      You're welcome. thank you

  • @osamaking9279
    @osamaking9279 8 лет назад

    Thanks

  • @fzx2023
    @fzx2023 6 лет назад

    i neeed sorce code

    • @foxlearn
      @foxlearn  6 лет назад

      You can find code at foxlearn.com

  • @khaleelkhan1176
    @khaleelkhan1176 7 лет назад

    please
    send that code to me

  • @tridibroyarjo418
    @tridibroyarjo418 4 года назад

    Flaticon is thousands time better than icon finder, go to Flaticon!

  • @antonmarkaj1086
    @antonmarkaj1086 6 лет назад +1

    Lol, singleton was hated by all our professors. And you say it's one of the best patterns? Dafuq.

    • @foxlearn
      @foxlearn  6 лет назад

      Yes, why your professor hate the pattern ?

    • @antonmarkaj1086
      @antonmarkaj1086 6 лет назад

      Fox Learn They are generally used as a global instance, why is that so bad? Because you hide the dependencies of your application in your code, instead of exposing them through the interfaces. Making something global to avoid passing it around is a code smell.
      They violate the single responsibility principle: by virtue of the fact that they control their own creation and lifecycle.
      They inherently cause code to be tightly coupled. This makes faking them out under test rather difficult in many cases.
      They carry state around for the lifetime of the application. Another hit to testing since you can end up with a situation where tests need to be ordered which is a big no no for unit tests. Why? Because each unit test should be independent from the other.

    • @foxlearn
      @foxlearn  6 лет назад

      i don't think so, if you want your object only one instance, singleton pattern is the best way to solve the problem. design pattern include 24 patterns of go4, using to solve the exists problems