NetworkList has the generic constraints T : unmanaged, IEquatable<T>.
When looking through NetworkList.cs, it does not seem that the IEquatable<T> constraint is actually used anywhere. Is there a reason for this constraint that I'm missing? I ask because it means you currently cannot make a network list of enums.
NetworkList has the generic constraints
T : unmanaged, IEquatable<T>.When looking through
NetworkList.cs, it does not seem that theIEquatable<T>constraint is actually used anywhere. Is there a reason for this constraint that I'm missing? I ask because it means you currently cannot make a network list of enums.