ChronopicRegisterPortList.Print C# (CSharp) Method

Print() public method

public Print ( ) : void
return void
    public void Print()
    {
        LogB.Information("Printing ChronopicRegisterPortList... ");
        foreach(ChronopicRegisterPort crp in L)
            LogB.Information(crp.ToString());

        LogB.Information("... Done!");
    }

Usage Example

Esempio n. 1
0
    protected void process()
    {
        //1 print the registered ports on SQL
        crpl = new ChronopicRegisterPortList();
        crpl.Print();

        //2 create list
        createList();

        //3 print the registered ports on SQL (debug)
        crpl.Print();
    }
All Usage Examples Of ChronopicRegisterPortList::Print