Automatak.Simulator.DNP3.Commons.ListviewDatabaseAdapter.Process C# (CSharp) Method

Process() public static method

public static Process ( IChangeSet changes, ListBox listBox ) : void
changes IChangeSet
listBox System.Windows.Forms.ListBox
return void
        public static void Process(IChangeSet changes, ListBox listBox)
        {
            IDatabase adapter = new ListviewDatabaseAdapter(listBox);

            listBox.SuspendLayout();
            changes.Apply(adapter);
            listBox.ResumeLayout();
        }