CSKernelClient.cListViewColumnSorter.cListViewColumnSorter C# (CSharp) 메소드

cListViewColumnSorter() 공개 메소드

Class constructor. Initializes various elements
public cListViewColumnSorter ( ) : System.Collections
리턴 System.Collections
        public cListViewColumnSorter()
        {
            // Initialize the column to '0'
            ColumnToSort = 0;

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

            // Initialize the CaseInsensitiveComparer object
            ObjectCompare = new CaseInsensitiveComparer();
        }