コード例 #1
0
        private static void AddEvent(string command)
        {
            DateTime date;
            string   title;
            string   location;

            GetParameters(command, "AddEvent", out date, out title, out location);
            events.AddEvent(date, title, location);
        }