コード例 #1
0
 public static void Add([CanBeNull] NotificationCollection notifications,
                        [NotNull] string format,
                        params object[] args)
 {
     notifications?.Add(format, args);
 }
コード例 #2
0
 public static void Add([CanBeNull] NotificationCollection notifications,
                        [NotNull] string message)
 {
     notifications?.Add(message);
 }