Workaround a C++/CLI bug involving DIMs #89253
Merged
+9
−5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As per the title there is currently a C++/CLI bug involving implementing an instance DIM on a derived interface. This causes C++/CLI to error when using any type that implements such an interface, which in the case of
System.Numerics.INumberBase<TSelf>
includes all the primitive types (such asInt32
orSingle
).There were a few possible changes that would temporarily resolve this issue...
IUtf8SpanFormattable
to have a DIM where it always throwsPlatformNotSupportedException
, but this could lead to unexpected behavior for consumers of the APIIUtf8SpanFormattable
to have a DIM where it always returnsfalse
, but this risks users naively doing the wrong thing and trying to grow the buffer and call the API repeatedly as that's how the otherTryFormat
APIs workIUtf8SpanFormattable
to inherit fromISpanFormattable
and have a DIM where it defers to that implementationOf these options, 1 or 4 are the least risky.
4 would end up changing the shipping API surface and would not require a reversion later. It has the downside in that it requires everyone implementing
IUtf8SpanFormattable
to also supportISpanFormattable
(that isUTF-16
). This puts more restriction on the API surface overall. That being said, it is the better option if we believe that the C++/CLI fix will not make the .NET 8 release as avoids us introducing a diamond problem in the future as the DIM is provided in the same release that the relevant interface and API are defined.1 (this change) will require us to revert this PR once the C++/CLI fix goes in. Not reverting this workaround will result in
INumberBase<TSelf>
not being able to implementIUtf8SpanFormattable
without risking the introduction of a diamond problem, since other types/interfaces could implementIUtf8SpanFormattable
with a DIM before the .NET 9 release.