ChronopicRegisterPortList.Delete C# (CSharp) Method

Delete() public method

public Delete ( ChronopicRegisterPort, crp ) : void
crp ChronopicRegisterPort,
return void
    public void Delete(ChronopicRegisterPort crp)
    {
        //Delete from SQL
        SqliteChronopicRegister.Delete(false, crp);

        //Delete from list
        L.Remove(crp);
    }