We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 506024c commit fa43053Copy full SHA for fa43053
Platform.Collections/Arrays/ArrayPool[T].cs
@@ -15,7 +15,7 @@ public class ArrayPool<T>
15
{
16
// May be use Default class for that later.
17
[ThreadStatic]
18
- internal static ArrayPool<T> _threadInstance;
+ private static ArrayPool<T> _threadInstance;
19
internal static ArrayPool<T> ThreadInstance => _threadInstance ?? (_threadInstance = new ArrayPool<T>());
20
21
private readonly int _maxArraysPerSize;
0 commit comments