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

  • @rheinelroimanalo7321
    @rheinelroimanalo7321 Год назад +184

    Thank you programming Jesus!

    • @RawCoding
      @RawCoding Год назад +56

      Stay blessed son

    • @sonikajha3788
      @sonikajha3788 7 месяцев назад +1

      😂

    • @PerryCodes
      @PerryCodes Месяц назад

      Jesus is always pergmarily looking out for us!

  • @dattabansode6598
    @dattabansode6598 4 года назад +285

    misunderstanding is extremely common. Many people are taught that multithreading and asynchrony are the same thing, but they are not.
    Example. You are cooking in a restaurant. An order comes in for eggs and toast.
    Synchronous: you cook the eggs, then you cook the toast.
    Asynchronous, single threaded: you start the eggs cooking and set a timer. You start the toast cooking, and set a timer. While they are both cooking, you clean the kitchen. When the timers go off you take the eggs off the heat and the toast out of the toaster and serve them.
    Asynchronous, multithreaded: you hire two more cooks, one to cook eggs and one to cook toast. Now you have the problem of coordinating the cooks so that they do not conflict with each other in the kitchen when sharing resources. And you have to pay them.
    Now does it make sense that multithreading is only one kind of asynchrony? Threading is about workers; asynchrony is about tasks. In multithreaded workflows you assign tasks to workers. In asynchronous single-threaded workflows you have a graph of tasks where some tasks depend on the results of others; as each task completes it invokes the code that schedules the next task that can run, given the results of the just-completed task. But you (hopefully) only need one worker to perform all the tasks, not one worker per task.

    • @RawCoding
      @RawCoding 4 года назад +23

      Can you explain to me what made you think I'm misunderstanding something? To me it seems you explained what I explained but from a high level, which is what everyone does, and at no time did I make the following claim:
      > that multithreading and asynchrony are the same thing, but they are not.
      My explanation is based around - handing off a task to something else to work on, so in your example it would be a fryer (external process) frying an egg (working on a task), and we are not waiting for it (thread isn't blocked).
      When I go to explain that a different thread may complete the rest of our task it's like chef1 starting to cook an egg and chef 2 finishes it.
      If you are just giving another high level overview of asynchrony there are ton's of these, people are still looking for these videos because they want to understand the abstraction behind it.
      And I'll re-state I do think your explanation is correct and informative but doesn't cut where it needs to.

    • @exogendesign4582
      @exogendesign4582 3 года назад +2

      Should've have find this comment sooner, I should learn both though.
      What I want was Synchronous for my project Since it depends on the completion of the first task before the next. that's why I there is no blocking in my app, since im using async, it really baffles me but this comment really made me see the difference, and the video made me understand how to right the code, good combination. Thanks for sharing your knowledge Datta Bansode. and Raw Coding you guys rock.

    • @emreaka3965
      @emreaka3965 2 года назад +5

      @@RawCoding You said, "another thread is indeed going to complete the boiling process." but the man says "there is no another thread. it runs single thread." If I am wrong, please correct.

    • @ТарланИсмаилов-т2к
      @ТарланИсмаилов-т2к 2 года назад

      ​@@emreaka3965 I think that the number of threads depends on operation type we need to execute (IO-bound or CPU-bound). IO-bound operations don't need additional threads, they use some external devices that don't need our help. But I might be wrong

    • @ZombieMagnum
      @ZombieMagnum 2 года назад +1

      As I understand it from this video, the use of async/await DOES in fact sometimes automatically create additional threads, hoewever not necessarily for every async function or await statement. It is confusing that people insist that async/await is ''single-threaded asynchrony" when in practice it is not true. I do understand that multi-threading is a different concept, your explanation is great.

  • @pratikzirpe315
    @pratikzirpe315 3 года назад +52

    I haven’t seen anyone else explain such complex concept with such ease and still thorough - to the point. Thank you 🙏🏻

  • @TJahmusick
    @TJahmusick 3 года назад +31

    This is exactly how I wanted this explained to me. Incredible! Thanks!

    • @RawCoding
      @RawCoding 3 года назад +1

      Thank you for watching))

  • @ragtop63
    @ragtop63 8 месяцев назад +3

    Although I already had a pretty good understanding of how all this works, I have to say that your explanation is by far the best that I’ve seen.
    Too many times other videos show you some simple implementation that really can’t be ported to the real complexities of asynchronous programming. So you leave those videos with a “Hmm, ok. I guess that makes sense. But how do I apply it to my specific situation?” kind of feeling.
    What you’ve done here is not given us the fish but instead taught us how to fish.
    A fundamental understanding of complex topics is always the best method.
    Great job!

  • @aleksandermirowsky7988
    @aleksandermirowsky7988 Год назад +19

    Rust's async/await functionality operates in a similar way, as it also expands into a state machine.
    It has been explained by Rust experts multiple times, but your explanation takes it to another level.
    The ability to visualize the intermediate generated code is just the icing on the cake.
    Great stuff, happy to see that you're still an actively posting on RUclips. Instantly subscribed and activated notifications.

    • @RawCoding
      @RawCoding Год назад +1

      Thank you really appreciate it!

  • @spuriustadius5034
    @spuriustadius5034 4 года назад +58

    I got totally confused about Dump() and Dump(string s) until I realized that you are using some kind of built in extension method that your IDE (linqpad?) somehow defines for you. Once I understood that, it was super clear.

    • @RawCoding
      @RawCoding 4 года назад +10

      Awesome! glad it didn't get in the way too much :)
      Yeah linqpad is like a mini development environment, as you can see I get to run my code instantly instead of waiting for the app to compile/start etc... and the data vizualisation that you get through Dump can be pretty incredible :)

    • @nobytes2
      @nobytes2 3 года назад +14

      pretty weird tbh, just use console write like every other human 🙄

    • @RawCoding
      @RawCoding 3 года назад +37

      No

    • @Jwhite1979
      @Jwhite1979 3 года назад +11

      100% this! I'm 1:49 into the video, and I pull out C# In A Nutshell, find nothing, Google "String dump method", find nothing, search through RUclips comments for someone, for the love of god, anyone explaining what the hell this .Dump method is all about! Thank you Spurius. Today, you're the hero.

    • @RichardONeil
      @RichardONeil 3 года назад +2

      @@RawCoding agreed...Linqpad is the greatest tool on my belt to quickly work things out. You get all the cruft out of the way and can hone directly in on an algorithm that you are trying to build, or understand. I highly recommend buying it to everybody that does this for a living.

  • @hsnnoznn
    @hsnnoznn Год назад +3

    Man, I usually take the information I need and close the video but you are absolute legend. I can not skip without a huge thanks. You explained it very well. Again, thanks a lot.

  • @aronhegedus
    @aronhegedus 4 месяца назад +1

    this is really useful because you're showing us the inbetween code, rather than just telling us. I find that that's usually the most instructive, because I can then go and check that as well

  • @pieDesert
    @pieDesert 2 года назад +22

    S-Tier explanation and demonstration. It is so difficult to find decent tutorials out there, but this one was no fat just cut right to the information I needed to hear and delivered with such simplicity. Also actually using the full time of the video to teach and explain and not self promote and advertise. Appreciate the raw commentary!

    • @RawCoding
      @RawCoding 2 года назад +3

      Glad I could help)

  • @MiningMozo
    @MiningMozo 3 года назад +158

    Step 1 - Complete High school
    Step 2 - Complete Colleges
    The next step is to figure out what the fuck is going on

    • @RawCoding
      @RawCoding 3 года назад +7

      Pretty much :P

  • @speakoutloud7293
    @speakoutloud7293 4 года назад +14

    Man, I just can't get enough of your videos. You rock with this! Keep it up.

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

      Cheers, glad you liked them

  • @mikecu2249
    @mikecu2249 2 года назад +1

    This must be the Best Explanation about this Topic on our Planet!
    You didnt not only manage to create a crystal clear image, approch and explanation. You also picked the confused C# Devs up who still tried to figure out, what the clock is happening to my code?
    Thank you!

    • @RawCoding
      @RawCoding 2 года назад

      Glad I could help!

  • @michalbrndiar5317
    @michalbrndiar5317 4 года назад +160

    Crystal clear and absolutely the best explanation of this concept I've ever seen. Keep up great work! :)

    • @RawCoding
      @RawCoding 4 года назад +1

      Thank you )

    • @WantOxide
      @WantOxide 4 года назад +3

      Bullshit this crap is not clear

    • @michalbrndiar5317
      @michalbrndiar5317 4 года назад +4

      Hmm, probably it is not this video's fault. 🤔

    • @WantOxide
      @WantOxide 4 года назад +2

      @@michalbrndiar5317 of course it is. there are more clear videos, so it's clearly his video fault

    • @WantOxide
      @WantOxide 4 года назад +1

      @@michalbrndiar5317 And if it's not his video's fault it means you just do spaghetti code as he does (and spaghetti explanations)

  • @ehsanhadid1260
    @ehsanhadid1260 3 года назад +17

    Just wow, I want to go back, leave University and just follow you.

    • @RawCoding
      @RawCoding 3 года назад +5

      Haha don’t do that :P

  • @LarrySmith1437
    @LarrySmith1437 3 года назад +3

    Well done, sir. I struggled with how to present this topic to my dev department, your example helped a lot.

  • @StreetBladerBloke
    @StreetBladerBloke 3 года назад +4

    Very clear and especially deep dive which is always a missing part in programming videos, you have nailed it.. thanks and keep it up with these videos they are pure gold..maybe u can create a course and sell it..I am sure deep dives are missing in today's programming world where instructors are just bothered about creame only but not the cake. You and Jamie king are the only ones who are taking it to another level. Thanks for ur efforts

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

      Cheers, there will be a course at one point

  • @TheFeaz
    @TheFeaz 3 года назад +3

    Hey man, this (and your other video showing HOW to use async / await) was REALLY good information. Another person said it, but I'll say it again, this was the best presentation of this material that I've ever seen. I'm a senior software engineer with my company, and I've been here almost 20 years. Most of my work is in hard-core business logic, and I haven't done a lot with system-level stuff, multi-threading, and all that. With the changing system model these days and an emphasis on micro-services, I'm re-visiting these concepts (that and I'm doing some of my own private consulting now, doing web development, Docker containers, etc. and certainly am seeing a lot of this async stuff, particularly in the bakc-channel OAuth stuff.)
    Anyway, the biggest challenge I have learning this stuff in a meaningful way is that content out here usually goes one of two places-- It either shows very simplistic "hello world" type examples, that make would make a great "Await / Async 101" course or a college lab project, but in practice they don't scale well to anything resembling what we would actually DO in an enterprise application. On the other hand, there are task-oriented "how-to's" that show you the how but not the WHY. I really appreciated your deep-dive into this and a look at how the MSIIL implements this. That really gave a whole new dimension to my understanding of how this stuff actually works under the covers, and gives me some much-needed insight into how I could leverage these features in our enterprise applications.

    • @RawCoding
      @RawCoding 3 года назад +1

      Thank you for your comment))

  • @geerivana
    @geerivana 3 года назад +1

    Your videos are way better than any other official online courses

  • @ghazanfarabbas4187
    @ghazanfarabbas4187 4 года назад +2

    Never seen such a insightful video before. Keep it up man...

  • @elkhoukhi
    @elkhoukhi 4 года назад +5

    Man I just came across your channel, quality material! I subscribed, Keep up the good work

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

      Thank you, hope you like the rest :)

  • @rafiul41
    @rafiul41 Год назад

    One of the most underrated channels on RUclips.

  • @jimsteinPeerless
    @jimsteinPeerless 4 года назад +62

    You do overemphasize the importance of threads like everyone trying to explain Async does.
    It is a nice very demo but (this is not covered by this video) if you in the first example replace the await Task.Delay(300) with a busy loop (the same as in the main function) there will not be another thread spawn and everything will execute on a single Thread. This is task concurrency on a single thread(?).
    Task.Delay is not CPU bound but the busy loop is CPU bound. So Task.Delay is good for simulating an IO bound Task and therefore you get continuation on another thread. The threads are operating on a layer below concurrency, so you do not need to have multiple threads to have Task concurrency(?).
    Kind regards

    • @RawCoding
      @RawCoding 4 года назад +3

      Thank you for sharing

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

      @@RawCoding Thankfully, You're the teacher here!

    • @matthewkeron1448
      @matthewkeron1448 4 года назад +1

      schooooled him

    • @ВадимН-о9х
      @ВадимН-о9х 4 года назад +3

      Can someone please explain me what Jimstein Peerless meant?
      As he said, i replaced "await Task.Delay(300)" with CPU bounded task (the loop shown in the video for example):
      await Task.Run(() => {
      var a = 0;
      for (int i = 0; i < 100_000_000; i++) {
      a += i;
      }
      Console.WriteLine("CPU-bound task in running on ThreadId = " + Thread.CurrentThread.ManagedThreadId);
      });
      And i still see it being executed on another thread (Console.WriteLine shows thread id different from the main thread id).
      OR did he meant not using async/await and just start a raw CPU bound loop? But then it would be totally synchronous program and it is not the point of this video. But he still got so many likes on his comment. So seems like people found it useful. I am so confused...

    • @RawCoding
      @RawCoding 4 года назад +3

      I guess I haven’t explained the Task.Run in this video where it’s literally a task you give the thread pool to execute, if you have a Synchronous Task method that returns a task without having async await , it will literally wait for the function to finish executing to give you the result of a Task object, like a normal function you are just waiting for the return value.

  • @dunefedaykiin
    @dunefedaykiin 4 года назад +4

    Awesome video, like always! Looking forward to the next video about the practical use of async/await!

  • @_Ming_Ming_
    @_Ming_Ming_ 2 года назад +1

    Thank you for this clear explaination sir! for this I will never skip ads in your video

  • @investmentjourney7912
    @investmentjourney7912 3 года назад +1

    Best explanation till now, not just showing windows form for ui activeness like others. 👍

  • @cuzsleepisthecousinofdeath
    @cuzsleepisthecousinofdeath 2 года назад +1

    Finally a person who's just like Jamie King(pardon me for making a comparison): straight to the point, showing the internal guts of things
    Subscribed instantly

  • @lefrutit228
    @lefrutit228 2 года назад +1

    tutorials such that are exaclty what youtube needs lol, I barely can find tutorials that I cant understand from the first watching, they're too simple, but this is excellent, thank you!!

    • @RawCoding
      @RawCoding 2 года назад +1

      Thank you 🙏

  • @AjitGoel
    @AjitGoel 3 года назад +2

    This is a amazing video, first clear explanation of the async-await internals. Thank you Raw Coding.

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

      Thank you for watching

  • @jasonherrera7605
    @jasonherrera7605 4 года назад +4

    Thank you, it is difficult for me to follow your English, but it has been the best explanation I have ever known.

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

      Awesome, thank you )

    • @magerehenk7579
      @magerehenk7579 3 года назад +1

      why is it difficult to follow his english?

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

      I’m not a native speaker and some other people aren’t ether, so it’s a compounding effect

  • @marketfinds
    @marketfinds 2 года назад +1

    Excellent work, glad you went down into the IL Code. Helps make it clearer what magic is going on.

    • @RawCoding
      @RawCoding 2 года назад

      Glad you liked it!

  • @rowanlidbury
    @rowanlidbury 4 года назад +3

    How have I not found you before.? You need to investigate why you don't show up cos this is gold.

  • @forbin80
    @forbin80 4 года назад +5

    Bruhhhh... I've been reading about and even using async for a couple years now and in 20 mins you just cleared up everything I didn't understand about the way this stuff works. All the weirdness I've seen in my code now makes perfect sense. Fantastic video, I can't thank you enough. By far the most clear explanation of async/await I've ever seen.

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

      Thank you, glad I could help:)

  • @kopilkaiser8991
    @kopilkaiser8991 2 года назад +1

    Thank you so much for taking the time to explain it. I have understood some of the concepts and I will need to rewatch it to better grasp the concepts. But still I was completely lost with this asynchronous programming, and was able to find some of the way by watching your tutorial. Thank you for simplifying the complex concepts. It takes a great mind to decode the entanglement which the async await Task brings in when you jump into it after being comfortable with synchronous programming. I will keep on digging into this until it is drilled deep into my mind.

  • @Esurnir
    @Esurnir 3 года назад +1

    Thank you for clearing up this absolute swamp of complexity that is async await in c#

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

      Thank you for watching))

  • @zhh174
    @zhh174 4 года назад +1

    thank you so much. no one explained it on youtube. they just show the use of async and await.

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

      Cheers, that’s what my problem with all the tutorials were :)

  • @razortier4284
    @razortier4284 Год назад

    Great job. Not so many guys are explaining how it works under the hood with state machine

  • @anpham871
    @anpham871 4 года назад +1

    Thanks a lot!! You motivated me so much!! You are the best C# developer i've ever seen on youtube.

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

      Cheers ma dud ))

  • @oganovdavid
    @oganovdavid 3 года назад +1

    Thanks so much for sharing your knowledge. Haven't met anyone explaining this better than you. I've finally got some understanding of what's going on.
    Subscribed

    • @RawCoding
      @RawCoding 3 года назад +1

      Cheers, glad I could help :)

  • @hlazunov
    @hlazunov 2 года назад

    This is the insane video about async/await in .NET. I have never seen a better explanation of async in .NET. Thanks a lot.

  • @emrealtuntas1319
    @emrealtuntas1319 2 года назад +2

    After 05:51 i directly clicked like button.

  • @Time_Leak
    @Time_Leak 4 года назад +1

    Thanks for the clear explanation. It was really helpful to see IL that is responsible for all the magic.

  • @MetaArcher
    @MetaArcher 4 года назад +1

    Pretty cool and clear video. One of the best async videos I've seen. Hope next time you do a deep dive to compare Parallelism and Async

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

      Thanks, as I’ve shown in this video it’s pretty much parallel already )

  • @armandopenaleonett1258
    @armandopenaleonett1258 3 года назад +2

    Thank you I have always had problems understanding this now it's way more clear!

  • @jwange1
    @jwange1 3 года назад +5

    Oh man! you really have a good head in clarifying things. thank you. Besides, what kind of editor do you use? interesting!

    • @RawCoding
      @RawCoding 3 года назад +3

      Rider and LinqPad

  • @martinrogachevsky5627
    @martinrogachevsky5627 Год назад +1

    One of the best explanations so far, great examples, thanks a lot!
    Only one thing didn't let me go through this on the first attempt is when you were explaining what network device is doing with the thread on your 'art', you said that it "frees" the thread. For someone who is not native speaker that sounded a lot like "freeze" the thread and really confused me for some time.
    So just be aware of these little verbal things but in general very helpful and worth sharing!

    • @RawCoding
      @RawCoding Год назад +1

      Thank you, yeah I’m not a native speaker so might mess up some pronouncements

  • @martinnicolas1399
    @martinnicolas1399 4 года назад +3

    Finally, I understand what is happening! Thanks

  • @MichaelVBrown-h2n
    @MichaelVBrown-h2n Год назад

    Awesome video! Just what I was looking for. Also while I was diving into the Task code I had noticed a TaskStatus enum at the top. Immediately I was thinking that there must be some state machine at work happening here. So thanks for confirming that.

  • @FroboDaggins
    @FroboDaggins 11 месяцев назад +3

    Hi, what is this .Dump() command?
    Is this something you wrote yourself or a NuGet package or the program itself?
    It doesn't seem to be a thing using C# on Visual Studio

    • @RawCoding
      @RawCoding 11 месяцев назад +2

      it's a method provided by LinqPad, it's a fancy Console Writeline

  • @НазарийСавиных
    @НазарийСавиных 2 года назад +1

    Best explanation i've ever seen. Thanks!

  • @AC-fs2rl
    @AC-fs2rl Год назад +1

    This is the thing I was looking for, thank you

  • @gotham4u
    @gotham4u 2 года назад +1

    Wow, I understood it finally .
    I was trying to understand async and await keywords for last an hour, but "yield" was not comprehensible. Thanks very much.

    • @RawCoding
      @RawCoding 2 года назад

      Cheers, I have a video about IEnumerable and yield you can have a look

  • @kasra7885
    @kasra7885 4 года назад +1

    You left no questions.
    And a good rhythm

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

      That’s what we like :D

  • @owiz9212
    @owiz9212 4 года назад +1

    Thanks very much Anton!
    Really simplifies asynchronous processing. Much appreciated!!

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

      Thank you for watching

  • @Hypermommy
    @Hypermommy 3 года назад +1

    Thank you for this very clear explanation of a sometimes confusing concept.

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

      Thank you for watching

  • @BorisMiljkovic
    @BorisMiljkovic 2 года назад +1

    Finally, a good explanation. Thank you!

    • @RawCoding
      @RawCoding 2 года назад

      Glad you enjoyed it!

  • @vaya99
    @vaya99 2 года назад +1

    Best explanation for async await 👍, looking for deep dive for .ConfigureAwait() function. Keep it up ... how my computer is expecting it and how to read a code sequence is best part with respect to state sequence explanation.

    • @RawCoding
      @RawCoding 2 года назад

      Glad I could help )

  • @mrwillis5339
    @mrwillis5339 4 года назад +1

    Useful to hear a concise explanation .

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

      Glad I could help

  • @tomaszwitkowski9545
    @tomaszwitkowski9545 3 года назад +1

    I am in the fifth minute and I got understood it more than I had understood after the classes

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

      Hope you find the rest just as useful)

  • @ldohlj1
    @ldohlj1 4 года назад +1

    Wow! Great analogy and great explanation. Thank you

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

      Thank you for watching

  • @mkowalski2708
    @mkowalski2708 4 года назад +1

    Just top notch content lately, much appreciated 😁

  • @BradenJohnYoung
    @BradenJohnYoung 10 месяцев назад

    Finally, a good freaking explanation. Thank you!

  • @stevenstone307
    @stevenstone307 2 года назад +1

    Awesome explanation mate. Funnily enough another thing I learnt in this video is that you can put underscores in big numbers lol

  • @StevenBloomfield
    @StevenBloomfield 4 года назад +3

    Always wondered what all the MoveNext calls were in aggregate exception stack traces. I see now where they come from. Thanks!

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

      Glad I could help

  • @dishantchourasia4513
    @dishantchourasia4513 3 месяца назад

    Awesome explanation! Please keep up the good work

  • @pintileiciprian
    @pintileiciprian 3 года назад +1

    This is great work, man, keep it up!

  • @onnuttig
    @onnuttig 3 года назад +1

    Finally just a simple example of how this shit works, thanks man, instant sub

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

      Glad you like it )

  • @koenfrontatie
    @koenfrontatie 7 месяцев назад

    really appreciate your style of teaching! you've helped me lots

  • @sankaralingammuthusamy6142
    @sankaralingammuthusamy6142 Год назад

    It was really superb explanation about async and await. Thanks bro keep up the good work

  • @KrishnaList
    @KrishnaList 4 года назад +1

    Very Nice Explanation Anton It is really Deep Dive

  • @abhirammadhu2973
    @abhirammadhu2973 Год назад +1

    You didn't add sugar😒
    BTW, this is the best video explaining async/await in C#. You're right. All other video just simply explains how to implement asynchronous program rather than explaining what exactly happens under the hood.

  • @thatguywiththeface9463
    @thatguywiththeface9463 2 года назад +1

    Very detailed and well explained tutorial. Thank you, coding Jesus!

  • @Skillamu
    @Skillamu Год назад

    Very good explanation and demonstration. Great video!!

  • @phongs2nhu
    @phongs2nhu 3 года назад +1

    Good job, man.
    I'm from Viet Nam. So by watching your video, I studied new knowledge and English language. Of course, your voice is great with nice intensity.
    Thanks a million.

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

      Glad I could help :)

  • @alexplom5958
    @alexplom5958 3 года назад +1

    Absolutely phenomenal video

  • @ievheniiierokhin1677
    @ievheniiierokhin1677 4 года назад +1

    Good way to explore what really happens behind the scene with ilspy

  • @tylergoffinet1085
    @tylergoffinet1085 4 года назад +1

    Great personifications and IL code walkthroughs! Thanks!

  • @emmanuelmotsi
    @emmanuelmotsi 2 года назад

    Such a great explanation. Learn a lot from the DEEP DIVE! Thanks!

  • @ehsaneftekhari4525
    @ehsaneftekhari4525 Год назад +1

    Thanks a lot. that was the best explanation of how async actually works 🙇‍♂🙇‍♂🙇‍♂🙇‍♂🙇‍♂. now, I can sleep

  • @jokac4155
    @jokac4155 4 года назад +1

    Great content. You deserve more views and subs :D

  • @xieweiling7543
    @xieweiling7543 3 года назад +1

    The last part - the state machine is interesting!

  • @iedi3
    @iedi3 8 месяцев назад

    very impressive quality, and the relaxed atmosphere just perfect for some cigarettes and a beer (even though i stopped both), plus a reggae music in the background

  • @BryantCobarrubias
    @BryantCobarrubias 2 года назад +1

    You're a very good teacher.

  • @drillerboyyt4027
    @drillerboyyt4027 Год назад

    I am so happy I found his channel.

  • @muxa000
    @muxa000 2 года назад +1

    Wow, this is an awesome explanation!

  • @sreekanthbharatham7577
    @sreekanthbharatham7577 4 года назад +1

    Simple and very useful explanation of context switching. Never seen anyone put it together like this. For a long time I was aware the await takes control back to caller making it do other stuff. But never could grasp how potentially another thread picks up the context to continue from where it left off. That realization and looking at different thread ids in different blocks made a world of difference in my understanding. Simply outstanding !! Thank you

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

      Glad I could help:)

  • @biyankan.perera.7617
    @biyankan.perera.7617 3 года назад +1

    As always GREAT tutorial, I was struggling to get my head around this concept, after watching this i am very confident. Thanks mate, keep it up. What is the Dump() method you were using? Is it available in Visual Studio 2019?
    Awesome work!!! All the best man!!!

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

      It’s LinqPad

    • @biyankan.perera.7617
      @biyankan.perera.7617 3 года назад +1

      @@RawCoding Yep, you mentioned in the next video. Middleware tutorial... have to watch it couple of times to get into my head and have to read a bit more before watching it again. That's another amazing tutorial a million stars 🌟 for that my friend. Great work and keep it up.

    • @biyankan.perera.7617
      @biyankan.perera.7617 3 года назад +1

      @@RawCoding Thank you so much for the reply. Appreciate it.

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

      No worries, thanks for watching

  • @CCV334
    @CCV334 2 года назад +1

    Love the explanation! Would love to see a video on the basics of LINQPad. I can intuit how Dump(); works but would love to see your take on what's possible with the software.

    • @RawCoding
      @RawCoding 2 года назад

      Linkpad has a tutorial built in that does it

  • @lucaspedroso3351
    @lucaspedroso3351 3 года назад +1

    Man, thank you for making it simple

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

      Thank you for watching)

  • @СергейБыковский-н9с

    Wonderful explanation!

  • @yv989c
    @yv989c 4 года назад +1

    Continuation if the word you are looking for 🙂. Great video.

  • @abuzeromohammed3386
    @abuzeromohammed3386 4 года назад +2

    You hit important topics thanks

  • @sergeys5270
    @sergeys5270 4 года назад +2

    Thank you for tutorials! Maybe put these videos in a separate playlist?

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

      Will do can’t think of a good name

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

      @@RawCoding "Deep Dive" seems good enough

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

      Sounds good )

    • @1dfe-4e68-bd9f
      @1dfe-4e68-bd9f 4 года назад +1

      yeah, it would be great! Tutorial is the best!

  • @stardrake691
    @stardrake691 10 месяцев назад

    Awesome explanation, I’ve always thought that async-await in C# acts like the one in Javascript, but there are differences.

  • @amitagrawal4660
    @amitagrawal4660 3 года назад +1

    Very nicely explained 👏

  • @arunkutube
    @arunkutube 3 года назад +1

    love it, thanks for explaining using ILSpy, it makes things clear.

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

      Glad you like it

  • @s7887177
    @s7887177 3 года назад +1

    I love your interpretation. Hope you can do more.

    • @RawCoding
      @RawCoding 3 года назад +1

      What would you like to see?

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

      Hi, actually I learn async because of I am building a rpg game on unity but not for web services( which is the more common usage). And async is also really good at async branch event control like conversation with npc or trigger a sequence of branched animation or events. But it’s so hard to find this kind of design pattern online. And I noticed this channel you explain things very well( like this c# series and design patterns). For me a non-native speaker and non-computer background person it really good. Anyway, thinks for your working. And probably this is not your profession but if you know anything about rpg game design patterns. Hope you can do something like that.

  • @qwerty5689
    @qwerty5689 4 года назад +1

    Thanks for your vids mate. Really helpful! Keep it up :)

  • @sushil1200
    @sushil1200 4 года назад +1

    Very nice explanation!

  • @ДанекКиллер
    @ДанекКиллер 6 месяцев назад

    Bro really good explanation, thank you!