Private ProductUnit As New ProductUnit
Private ProductUnits As TList(Of ProductUnit)
ProductUnits = UnitProvider.GetAll()
Now i want to sort the ProductUnits collection in descending order of the property ProductUnitId.
I tried this ProductUnits.Sort("ProductUnitId DESE")
but it failed
What can i do?
try DESC rather than DESE
hth
swin
thanks ;
it worked well :)