Compare commits

...

2 Commits

Author SHA1 Message Date
24afbe9254 sd 2024-10-08 13:47:19 +04:00
36d6171669 end 2024-10-08 13:47:11 +04:00
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
{
if (value > 0)
{
_maxCount = value - 1;
_maxCount = value;
}
}
}

View File

@ -31,7 +31,7 @@ public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
}
else
{
_collection = new T?[value - 1];
_collection = new T?[value ];
}
}
}