Смена местами get и set
This commit is contained in:
parent
ac10e0d6e7
commit
179f5b9b94
@ -21,6 +21,11 @@ namespace ProjectAirplaneWithRadar.CollectionGenericObjects
|
|||||||
public int Count => _collection.Count;
|
public int Count => _collection.Count;
|
||||||
|
|
||||||
public int MaxCount {
|
public int MaxCount {
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return _maxCount;
|
||||||
|
}
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (value > 0)
|
if (value > 0)
|
||||||
@ -28,10 +33,6 @@ namespace ProjectAirplaneWithRadar.CollectionGenericObjects
|
|||||||
_maxCount = value;
|
_maxCount = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
get
|
|
||||||
{
|
|
||||||
return _maxCount;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public CollectionType GetCollectionType => CollectionType.List;
|
public CollectionType GetCollectionType => CollectionType.List;
|
||||||
|
@ -17,6 +17,11 @@ namespace ProjectAirplaneWithRadar.CollectionGenericObjects
|
|||||||
|
|
||||||
public int MaxCount
|
public int MaxCount
|
||||||
{
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return _collection.Length;
|
||||||
|
}
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (value > 0)
|
if (value > 0)
|
||||||
@ -31,11 +36,6 @@ namespace ProjectAirplaneWithRadar.CollectionGenericObjects
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return _collection.Length;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public CollectionType GetCollectionType => CollectionType.Massive;
|
public CollectionType GetCollectionType => CollectionType.Massive;
|
||||||
|
Loading…
Reference in New Issue
Block a user