Let's not break the entire fucking program brahs

This commit is contained in:
nattthebear 2021-01-08 13:41:15 -05:00
parent 0272684cdf
commit ecafbde89d
1 changed files with 21 additions and 0 deletions

View File

@ -47,6 +47,27 @@ namespace BizHawk.Common
}
}
/// <summary>
/// test if two arrays are equal in contents; arrays should have same type
/// </summary>
private static bool ArrayEquals<T>(T[] o1, T[] o2)
{
if (o1.Length != o2.Length)
{
return false;
}
for (int i = 0; i < o1.Length; i++)
{
if (!DeepEquals(o1[i], o2[i]))
{
return false;
}
}
return true;
}
private static readonly MethodInfo ArrayEqualsGeneric
= typeof(DeepEquality).GetMethod("ArrayEquals", BindingFlags.NonPublic | BindingFlags.Static)
?? throw new NullReferenceException();