Search found 1 match

by TheQuack
Fri Aug 05, 2022 4:24 am
Forum: General Discussion
Topic: Any reason why concrete type inheriting from a generic type implementing IEnumerable is not supported?
Replies: 1
Views: 624

Any reason why concrete type inheriting from a generic type implementing IEnumerable is not supported?

Considering this code, any way to work around the limitation that generic base type implementing IEnumerable is not allowed but is generic base not implementing IEnumerable is allowed? using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class SaveTest ...