コード例 #1
0
        public IRobotLog AddEntry(RobotLogEntry entry)
        {
            MessagesList.Add(entry);

            NewEntry?.Invoke(this, new RobotLogNewEntryEventArgs(entry));

            return(this);
        }
コード例 #2
0
 public RobotLogNewEntryEventArgs(RobotLogEntry entry)
 {
     this.NewEntry = entry;
 }