ARCed.Dialogs.AboutBox.ListViewItemComparer.ListViewItemComparer C# (CSharp) Метод

ListViewItemComparer() публичный Метод

Default constructor
public ListViewItemComparer ( int column, bool ascending ) : System
column int Column index
ascending bool Flag if sort method should be ascending or descending
Результат System
            public ListViewItemComparer(int column, bool ascending)
            {
                this._isAscending = column >= 0 && @ascending;
                this._intCol = Math.Abs(column) - 1;
            }

Same methods

AboutBox.ListViewItemComparer::ListViewItemComparer ( ) : System
AboutBox.ListViewItemComparer