General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
ThePrimeTime
comments
Comments by "" (@diadetediotedio6918) on "New Keyword "using" in JavaScript!" video.
Bro just stop with all the drama already
4
@tiagosutter8821 It has, in general I'm not a great fan of await using, but using alone is great and I understand the necessity of having an await version
1
@protox4 Actually, async disposables are util for more than async enumerators.
1
@alurma That's what I think, you can already represent the same think without the using with blocks, like that: ```cs void Method() { // some code here... { await using var x = AsyncDisposableResource(); // use it here inside and when outside of the scope it will be automatic disposed } } ```
1