RosettaCodeData/Task/Constrained-genericity/C-sharp/constrained-genericity-2.cs

7 lines
93 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
using System.Collections.Generic;
class FoodBox<T> where T : IEatable
{
List<T> food;
}