PIbd-11 Valiulov I.A. LabWork08 Simple #8

Closed
Ilyas wants to merge 2 commits from LabWork08 into LabWork07
2 changed files with 2 additions and 8 deletions
Showing only changes of commit 008e763701 - Show all commits

View File

@ -1,6 +1,4 @@
using ProjectWarmlyShip.Drawnings;
namespace ProjectWarmlyShip.CollectionGenericObjects;
namespace ProjectWarmlyShip.CollectionGenericObjects;
public interface ICollectionGenericObjects<T>
where T : class

View File

@ -1,7 +1,4 @@
using ProjectWarmlyShip.Drawnings;
using ProjectWarmlyShip.Exceptions;
using System.Linq;
using System.Runtime.Serialization;
using ProjectWarmlyShip.Exceptions;
namespace ProjectWarmlyShip.CollectionGenericObjects;
@ -84,7 +81,6 @@ public class ListGenericObjects<T> : ICollectionGenericObjects<T>
yield return _collection[i];
}
}
void ICollectionGenericObjects<T>.CollectionSort(IComparer<T?> comparer)
{
_collection.Sort(comparer);