Question: This is in C# Complete a custom linked list that stores an object and has the following functions void addfront(object storage) void addrear (object storage)
This is in C#
Complete a custom linked list that stores an object and has the following functions
- void addfront(object storage)
- void addrear (object storage)
- void addat(object storage, int index)
- void removeat(int index)
- void removefront()
- void removerear(),
- object getat(int index)
implement your linked list with your own user defined object as storage you will use a cast operation to box and unbox it.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
