Create a class that describes typed collection (type is abstract class from previous lab), implements ISet interface and has linked list inner structure. Implement all interface methods and create at least 3 constructors (1 - empty; 2 - takes one object; 3 - takes collection of objects).
- Make sure you have .NET SDK installed
- Go to folder containing .csproj file:
cd path/to/your/project
- Build the project:
dotnet build
- Run the project:
dotnet run