diff --git a/Il2CppInterop.Runtime/InteropTypes/Arrays/Il2CppArrayBase.cs b/Il2CppInterop.Runtime/InteropTypes/Arrays/Il2CppArrayBase.cs index 17f1138b..6208f600 100644 --- a/Il2CppInterop.Runtime/InteropTypes/Arrays/Il2CppArrayBase.cs +++ b/Il2CppInterop.Runtime/InteropTypes/Arrays/Il2CppArrayBase.cs @@ -60,8 +60,9 @@ public void CopyTo(T[] array, int arrayIndex) bool ICollection.Remove(T item) { return ThrowImmutableLength(); - } - + } + + public new int Length => base.Length;// For binary compatibility public int Count => Length; bool ICollection.IsReadOnly => false;