概要
/// <summary> /// This method is not implemented. Use <see cref="GetEnumerator"/> instead. /// </summary> /// <returns>Throws NotImplementedException.</returns> /// <exception cref="NotImplementedException">Method is not implemented.</exception> IEnumerator<T> IEnumerable<T>.GetEnumerator() { throw new NotImplementedException(); }
Unity 6 にアップデートしたら
NativeHashSet<T>.GetEnumerator の実装が上記のように変わっていた。