What does "I" mean in "IEnumerator"?

IEnumerator Test{
(code)
}

What does “I” mean in “IEnumerator” ?

1 Like

Interface: interface keyword - C# reference | Microsoft Learn

It comes from C# Naming Convention:

  • Interface names start with a capital I.
4 Likes