Tanner Gooding

Results 379 comments of Tanner Gooding

> However, since a special type is always generated for such a field, why not introduce a new special type syntax fixed T[size] that refers to this type? @IllidanS4, see...

That would be a completely separate/distinct feature and would need its own proposal.

@gafter, what part of this was done? This proposal is for allowing `fixed MyStruct name[size];`, which is still illegal.

@gafter, could you clarify if this requires more work on the proposal and if that is something that I can/should update? Or is this more design on the language side...

Thanks @gafter, so something like https://github.com/dotnet/coreclr/issues/23408 would help unblock this, if my understanding is correct?

This is an issue tracked by the C# LDM team, so they're responsible for tracking it and closing it. The support requested by the feature doesn't currently exist but is...

It’s worth noting that `static` members are “inherited” and accessible from the derived type in other cases. System.Runtime.Intrinsics relies on this to help model the “dependency hierarchy” between the various...

Converting a `Span` to a `T*` is not a safe operation. `Span` has different layouts on different platforms, may be a GC tracked reference, and wouldn't be free from a...

> for both cases as you can easily get a pointer to the first element in a Span if you wanted to work with pointers. `stackalloc` is often used in...

CC. @MadsTorgersen, @AlekseyTs, @stephentoub Please let me know if you believe anything from the meeting was not covered here or if there are any additional changes or clarifications that I...