-
Notifications
You must be signed in to change notification settings - Fork 508
Implement TypedReference #367
Comments
@MichalStrehovsky I'd like to look into this. Is there any chance you can give me a starting point for this? |
Thanks for volunteering! I would defer to @jkotas whether it's worth investing into this right now though. |
This is not needed for .NET Core. It would be only needed if we ever wanted to target full .NET Framework surface using the CoreRT compiler. |
@AlexBHarley I have fixed up the UpForGrabs to make sure they are appropriate. Could you please take a look whether there is anything interesting? I would recommend starting with some items related to CppCodeGen because of it is easier to ramp up on it (e.g. #874 or #910 are good CppCodeGen workitems). |
As per dotnet/standard#20 this will be part of the .NET Standard. Exact prioritization TBD, but reopening. |
The type was recently added to CoreLib. What we'll need to do:
|
Eh, I'll just do it now. |
This is basically three things: 1. `ByReference<T>` support 2. General support infra in the type system for Byref-like types (to be reused for e.g. `Span<T>`). 3. TypedReference Fixes #367.
Very low priority. Required for ECMA-335 completeness, but not in the .NET Core profile (for now or forever).
The text was updated successfully, but these errors were encountered: