PIbd-11_Gorskov_E.M._LabWork04_Simple #4

Closed
Evgeniu wants to merge 3 commits from LabWork04 into LabWork03
2 changed files with 0 additions and 2 deletions
Showing only changes of commit 33559a2fa7 - Show all commits

View File

@ -57,5 +57,4 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
_collection.RemoveAt(position);
return obj;
}
}

View File

@ -61,7 +61,6 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
return -1;
}
public int Insert(T obj, int position)
{
if (position >= _collection.Length || position < 0) return -1;