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

Closed
sqdselo wants to merge 18 commits from LabWork04 into LabWork03
2 changed files with 1 additions and 4 deletions
Showing only changes of commit 592fd5bea5 - Show all commits

View File

@ -1,5 +1,6 @@
using System;
using System.CodeDom.Compiler;
using System.Windows.Forms.VisualStyles;
namespace HoistingCrane.CollectionGenericObjects
{
@ -24,7 +25,6 @@ namespace HoistingCrane.CollectionGenericObjects
{
get { return list.Count; }
}
public int SetMaxCount
{
set
@ -42,8 +42,6 @@ namespace HoistingCrane.CollectionGenericObjects
if (position >= Count || position < 0) return null;
return list[position];
}
public int Insert(T obj)
{
// TODO проверка, что не превышено максимальное количество элементов

View File

@ -73,7 +73,6 @@ namespace HoistingCrane.CollectionGenericObjects
}
return -1;
}
public T? Remove(int position)