You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/project/list-of-diagnostics.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,6 +109,7 @@ The PR that reveals the implementation of the `<IncludeInternalObsoleteAttribute
109
109
|__`SYSLIB0052`__| This API supports obsolete mechanisms for Regex extensibility. It is not supported. |
110
110
|__`SYSLIB0053`__| AesGcm should indicate the required tag size for encryption and decryption. Use a constructor that accepts the tag size. |
111
111
|__`SYSLIB0054`__| Thread.VolatileRead and Thread.VolatileWrite are obsolete. Use Volatile.Read or Volatile.Write respectively instead. |
112
+
|__`SYSLIB0055`__| The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead. |
Copy file name to clipboardExpand all lines: src/libraries/Common/src/System/Obsoletions.cs
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -174,5 +174,8 @@ internal static class Obsoletions
174
174
175
175
internalconststringThreadVolatileReadWriteMessage="Thread.VolatileRead and Thread.VolatileWrite are obsolete. Use Volatile.Read or Volatile.Write respectively instead.";
internalconststringArmIntrinsicPerformsUnsignedOperationMessage="The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead.";
0 commit comments