Exemplo n.º 1
0
 public static void Add([CanBeNull] NotificationCollection notifications,
                        [NotNull] string format,
                        params object[] args)
 {
     notifications?.Add(format, args);
 }
Exemplo n.º 2
0
 public static void Add([CanBeNull] NotificationCollection notifications,
                        [NotNull] string message)
 {
     notifications?.Add(message);
 }