Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Generic Classes C# A) You need to enhance your generic LinkedListLibrary (.dll file ) class library project ( which has been completed in the class/Lab),
Generic Classes
C#
A) You need to enhance your generic LinkedListLibrary (.dll file ) class library project ( which has been completed in the class/Lab), by adding the following methods apart from the existing methods. (Note: Create a new solution, and to that solution add a new class library project. Enhance it as per requirements.:) 1. T Minimum() method which will return the smallest itemode value [5 marks] 2. T GetLastNode() which will return the last element in the linked list [5 marks] After that add another project- LinkedListLibraryTest to the above solution where you can test the above library by adding a reference to test project. Take out the build of the above library in the Release Mode.] - Test this library by using it in the project LinkedListLibraryTest by creating two linked lists of integers and doubles ( containing at least 5 elements each ) and calling the methods Minimum() and GetLastNode() B) You need to enhance class library project QueuelnheritanceLibrary ( generic version), which is derived from Linked ListLibrary, by adding following method apart from the existing ones: - T GetLast() which will just return the last element in the queue and not delete it. [2.5 marks] C) Test this library by using it in the project - QueuelnheritanceLibraryTest by creating two linked lists based queue objects of integers and doubles and calling the method GetLast(). [2.5 marks]
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started