Skip to content

Commit

Permalink
Make enumerator public again
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Aug 2, 2023
1 parent 58cf783 commit b8e55eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Realm/Realm/DatabaseTypes/RealmCollectionBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,8 @@ public void CopyTo(Array array, int index)

#endregion IList

private class Enumerator : IEnumerator<T>
// ReSharper disable once MemberCanBePrivate.Global - this needs to be public for the dynamic API
public class Enumerator : IEnumerator<T>
{
private readonly RealmCollectionBase<T> _enumerating;
private readonly bool _shouldDisposeHandle;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b8e55eb

Please sign in to comment.