This is a nice little technique to easily sort a generic List using delegates. Say you have the following class: public class Product { private int _ProductID; private string _Name; private decimal _Price; public Product( int productid, string name, decimal price) { _ProductID = productid; _Name = name;...