|
|
От: | m2user | |
| Дата: | 28.10.24 17:49 | ||
| Оценка: | |||
class Class3 : IEnumerable<Class3>
{
public IEnumerator<Class3> GetEnumerator()
{
throw new NotImplementedException();
}
IEnumerator IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
}