Exemple #1
0
 public static Notificacion GetNotificacion()
 {
     if (mensaje == null)
     {
         mensaje = new Notificacion();
     }
     return(mensaje);
 }
        static void Main(string[] args)
        {
            Notificacion n = Notificacion.GetNotificacion();

            n.recibir_notificacion();
            n.no_recibir();

            bool verificacion = n is Notificacion;

            Console.WriteLine(verificacion);

            Console.ReadKey();
        }