Compare commits
2 Commits
158ee34849
...
24afbe9254
Author | SHA1 | Date | |
---|---|---|---|
24afbe9254 | |||
36d6171669 |
@ -34,7 +34,7 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
|
||||
{
|
||||
if (value > 0)
|
||||
{
|
||||
_maxCount = value - 1;
|
||||
_maxCount = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
|
||||
}
|
||||
else
|
||||
{
|
||||
_collection = new T?[value - 1];
|
||||
_collection = new T?[value ];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user