pibd-12 Tangatarov.I.A. LabWork04 Base #17

Closed
sqdselo wants to merge 18 commits from LabWork04 into LabWork03
Showing only changes of commit 051ef5f863 - Show all commits

View File

@ -31,7 +31,7 @@ namespace HoistingCrane.CollectionGenericObjects
return null;
}
public bool Insert(T obj)
public T? Insert(T obj)
{
for(int i = 0; i < Count; i++)
{
@ -43,7 +43,7 @@ namespace HoistingCrane.CollectionGenericObjects
return false;
}
public bool Insert(T obj, int position)
public T? Insert(T obj, int position)
{
// Проверка позиции
if (position < Count && position >= 0)
@ -81,7 +81,7 @@ namespace HoistingCrane.CollectionGenericObjects
return false;
}
public bool Remove(int position)
public T? Remove(int position)
{
if(position < 0 || position >= arr.Length || arr[position] == null)
{