I have an array
of an object
called storing, some of the object's attribute (skuID
) is the same with some of the other storing with different (storingID
), how do i make my array
distinct
depending on their (skuID
)?
Storing(string storingID, skuID, storageID, price, expiry)
I have tried this but it doesn't work:
List<storing> storingAll = (List<storing>)Session["storingAll"];
List<storing> displayedStoring = storingAll.Distinct().ToArray();