Posted By:
Michael_Thompson
Posted On:
Thursday, July 27, 2006 02:48 PM
I don't know if I've posted this in the correct place. I am VERY new to OOP, and I am trying to compare two lists in a strict OOP fashion. I will try and make this as abstract as possible b/c the issue comes up frequently in my applications.
I have two lists, one is a list of items that exist in inventory (ExtantItems), and another is a list of items that should be in the inventory (RecordedItems). I want to create two more lists from these, items that don't exist, but should (NonExtantItems), and items that do exist, but shouldn't (UnRecordedItems).
Thank you for your time.