chore: Use var everywhere (#2294)
This commit is contained in:
parent
0b34cc4417
commit
ebaf104935
267 changed files with 873 additions and 873 deletions
|
|
@ -44,7 +44,7 @@ public struct ArrayEnumerator<T> : IEnumerator<T>
|
|||
|
||||
public bool MoveNext()
|
||||
{
|
||||
T[] localList = _array;
|
||||
var localList = _array;
|
||||
|
||||
if ((uint)_index < (uint)localList.Length)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue