This commit is contained in:
2026-03-30 12:47:29 +09:00
parent 04dd7222d9
commit 8231d6df60
45 changed files with 2497 additions and 707 deletions

View File

@@ -23,7 +23,7 @@ internal class UnsafeStackDebugView<T>
{
var items = new T[_stack.Count];
var pItems = (T*)_stack.GetUnsafePtr();
for (int i = 0; i < _stack.Count; i++)
for (var i = 0; i < _stack.Count; i++)
{
items[i] = pItems[i];
}