Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Prev Previous commit
Next Next commit
Fix out of range exception
  • Loading branch information
Meivyn authored Aug 28, 2025
commit ab402bf40c78add90723ce3d54d9627885b7bc85
2 changes: 1 addition & 1 deletion src/MonoMod.UnitTest/Github/Issue230.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ private class SomeType
public int index { get; set; }
}

private static readonly List<SomeType>[] _list = new List<SomeType>[3];
private static readonly List<SomeType>[] _list = new List<SomeType>[4];

[Fact]
public void ILHookOnMonoShouldSucceed()
Expand Down
Loading