Add Array.Clear(Array) to sandbox

API added in .NET 6, overload that took explicit array bounds was already in sandbox.
This commit is contained in:
Pieter-Jan Briers
2024-06-01 14:17:28 +02:00
parent 6ef67cf513
commit 895bfb8ec0
2 changed files with 2 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ END TEMPLATE-->
### New features
*None yet*
* `Array.Clear(Array)` is now available in the sandbox.
### Bugfixes

View File

@@ -831,6 +831,7 @@ Types:
- "object GetValue(long[])"
- "System.Collections.IEnumerator GetEnumerator()"
- "System.Collections.ObjectModel.ReadOnlyCollection`1<!!0> AsReadOnly<>(!!0[])"
- "void Clear(System.Array)"
- "void Clear(System.Array, int, int)"
- "void ConstrainedCopy(System.Array, int, System.Array, int, int)"
- "void Copy(System.Array, int, System.Array, int, int)"