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

Sdílet
Vložit
  • čas přidán 13. 06. 2016
  • How to make an Internet Download Manager[IDM] /download file from url in C#. The C# Winforms Basics beginner course is a free C# Tutorial Series that helps beginning programmers learn the basics of the C# Programming Language.
    Part 2: • C# Tutorial - Internet...
    Website: foxlearn.com
    How to Download a File from Internet using C#
    Free Download Download Manager Like IDM in C#
    c# using to make internet download manager
    Download Manager in C#
    internet download manager source code in c#
    internet download manager project in c#

Komentáře • 78

  • @mrmakinist
    @mrmakinist Před 6 lety

    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 Před 7 lety

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

  • @satysato3031
    @satysato3031 Před 7 lety

    thank you for all your work

  • @SKbro2008
    @SKbro2008 Před 2 lety

    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 Před 7 lety

    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  Před 7 lety

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

  • @osamaking9279
    @osamaking9279 Před 7 lety

    Thanks

  • @mrmakinist
    @mrmakinist Před 6 lety

    please do a mini cnc program

  • @ducthuan378
    @ducthuan378 Před 4 lety

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

    • @foxlearn
      @foxlearn  Před 4 lety +1

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

  • @SasanH24
    @SasanH24 Před 7 lety

    Thanks a lot for about source code.

    • @foxlearn
      @foxlearn  Před 7 lety

      You're welcome. thank you

  • @khaleelkhan1176
    @khaleelkhan1176 Před 6 lety

    please
    send that code to me

  • @fzx2023
    @fzx2023 Před 5 lety

    i neeed sorce code

    • @foxlearn
      @foxlearn  Před 5 lety

      You can find code at foxlearn.com

  • @tridibroyarjo418
    @tridibroyarjo418 Před 3 lety

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

  • @antonmarkaj1086
    @antonmarkaj1086 Před 5 lety +1

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

    • @foxlearn
      @foxlearn  Před 5 lety

      Yes, why your professor hate the pattern ?

    • @antonmarkaj1086
      @antonmarkaj1086 Před 5 lety

      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  Před 5 lety

      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