I have a List as follow:
List<object> _l = new List<object>();
_l.Add(new {
Period = _period,
Ref_No = _ref_no,
Status = _status,
Status_Text = _status_text,
Message = _message
});
The status value would be 0,1 or 2
I don't want to use a Class, How to sort by Status?
Need help
Thanks a lot in advance
Don