Huo Yaoyuan
Huo Yaoyuan
VB does not enable creation support for ValueTask. Searching at https://github.com/dotnet/vblang/issues , I can't find any feature request for this either.
I wonder if we can put some effort to bring VB features more parity with corresponding C# feature. Implementation link lowering and specification corners can be borrowed from C#, so...
I believe this is a language issue, natural type of method group doesn't employ such inference.
When constrained as class, `box !T` is actually an upcast, casting from `T` to `object`. `box` followed by `br` is a well known pattern of the JIT: https://github.com/dotnet/runtime/blob/84b33395057737db3ea342a5151feb6b90c1b6f6/src/coreclr/jit/importer.cpp#L2905-L2929 It will...
Some comments not directly-related, but interesting to consider: What about `void` as a generic parameter? It's more complicated in type system, but there's not safety problem. Variables or fields declared...
How to solve "`Tuple` should be ref struct when either of T1 or T2 is struct"? It may require some specification work. Will a new `RefTuple` type be added to...
Looks like there are more uncovered bugs of #95543. I'll take a look. /cc @kzrnm in case you are interested.
Looks like #97995
I believe it's resolved. Just be unsure whether outerloop CI could hit another bug in the method.
Javascript number is defined as double. See https://github.com/dotnet/runtime/issues/60780#issuecomment-949911839 and related discussions.