PIbd-13_Ladyagin_P.D. LabWork06 Simple #8
@ -20,18 +20,19 @@ namespace ProjectAirplaneWithRadar.CollectionGenericObjects
|
||||
|
||||
public int Count => _collection.Count;
|
||||
|
||||
public int MaxCount {
|
||||
public int MaxCount {
|
||||
get
|
||||
{
|
||||
return _maxCount;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
if (value > 0)
|
||||
{
|
||||
_maxCount = value;
|
||||
}
|
||||
}
|
||||
get
|
||||
{
|
||||
return _maxCount;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public CollectionType GetCollectionType => CollectionType.List;
|
||||
|
@ -17,6 +17,11 @@ namespace ProjectAirplaneWithRadar.CollectionGenericObjects
|
||||
|
||||
public int MaxCount
|
||||
{
|
||||
get
|
||||
{
|
||||
return _collection.Length;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
if (value > 0)
|
||||
@ -30,12 +35,7 @@ namespace ProjectAirplaneWithRadar.CollectionGenericObjects
|
||||
_collection = new T?[value];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
get
|
||||
{
|
||||
return _collection.Length;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public CollectionType GetCollectionType => CollectionType.Massive;
|
||||
|
Loading…
Reference in New Issue
Block a user