コード例 #1
0
ファイル: EventsCore.cs プロジェクト: darkyto/HQC-Course
 public static void PrintEvent(EventMain eventToPrint)
 {
     if (eventToPrint != null)
     {
         Output.Append(eventToPrint + "\n");
     }
 }
コード例 #2
0
ファイル: EventsCore.cs プロジェクト: darkyto/HQC-Course
 public void AddEvent(DateTime date, string title, string location)
 {
     EventMain newEvent = new EventMain(date, title, location);
     this.checkByTitle.Add(title.ToLower(), newEvent);
     this.checkByDate.Add(newEvent);
     Messages.EventAdded();
 }