pibd-12 Tangatarov.I.A. LabWork03 Base #11

Closed
sqdselo wants to merge 12 commits from LabWork03 into LabWork02
Showing only changes of commit 5f5f61f51b - Show all commits

View File

@ -29,7 +29,6 @@
}
return null;
}
public int Insert(T obj)
{
for (int i = 0; i < Count; i++)
@ -41,7 +40,6 @@
}
return -1;
}
public int Insert(T obj, int position)
{
//todo Проверка позиции
@ -68,7 +66,6 @@
}
return -1;
}
public T? Remove(int position)
{
if(position >= 0 && position < Count)