22 lines
376 B
C#
Raw Normal View History

namespace ProjectSeaplane.CollectionGenericObjects;
public interface ICollectionGenericObjects<T>
where T : class
{
int Count { get; }
int MaxCount { set; get; }
int Insert(T obj);
int Insert(T obj, int position);
T Remove(int position);
T? Get(int position);
CollectionType GetCollectionType { get; }
IEnumerable<T?> GetItems();
}