示例#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);
 }