Nanook.QueenBee.ListViewColumnSorter.ListViewColumnSorter C# (CSharp) Method

ListViewColumnSorter() public method

Class constructor. Initializes various elements
public ListViewColumnSorter ( ) : System
return System
        public ListViewColumnSorter()
        {
            // Initialize the column to '0'
            _columnToSort = 0;

            // Initialize the sort order to 'none'
            _orderOfSort = SortOrder.None;

            // Initialize the CaseInsensitiveComparer object
            _objectCompare = new CaseInsensitiveComparer();

            _numeric = false;
        }