How to Sort List Collection
- by Muhammad Akhtar
I have class like
public class ProgressBars
{
    public ProgressBars()
    { }
    private Int32 _ID;
    private Int32 _Name;
    public virtual Int32 ID {get { return _ID; } set { _ID = value; } }
    public virtual Int32 Name { get { return _Name; } set { _Name = value; }}
}
here is List collection
List<ProgressBars> progress;
progress.Sort //I need to get sort here by Name
how can I sort this collection?
Thanks