Exemple #1
0
        public void ProbarConstructorTres()
        {
            //Act
            OtraClase clase = new OtraClase();

            clase.OtraClaseInstancia();
        }
Exemple #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Ingrese un numero:");
            Console.WriteLine("1) guardarlo en el escritorio");
            Console.WriteLine("Otro para guardarlo por default");

            string path = null;

            if (Console.ReadLine() == "1")
            {
                path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + @"\" + DateTime.Now.ToString("yyyyMMdd-HHmm") + ".txt";
            }
            else
            {
                path = DateTime.Now.ToString("yyyyMMdd-HHmm") + ".txt";
            }

            try
            {
                OtraClase a = new OtraClase();
                a.OtraClaseInstancia();
            }
            catch (MiExcepcion ex)
            {
                Exception excep = ex; //Puede contener todas las excepciones

                while (excep != null)
                {
                    ArchivoTexto.Guardar(path, excep.Message);
                    excep = excep.InnerException;
                }
            }

            try
            {
                ArchivoTexto.Leer(path);
            }
            catch (FileNotFoundException ex)
            {
                ArchivoTexto.Guardar(path, ex.ToString());
            }

            Console.WriteLine(ArchivoTexto.Leer(path));

            Console.ReadKey();
        }
Exemple #3
0
        static void Main(string[] args)
        {
            try
            {
                OtraClase a = new OtraClase();
                a.OtraClaseInstancia();
                Console.WriteLine("hoola");
            }
            catch (MiExcepcion ex)
            {
                Exception excep = ex; //Puede contener todas las excepciones

                while (excep != null)
                {
                    Console.WriteLine(excep.Message);
                    excep = excep.InnerException;
                }
            }
            Console.WriteLine("hoola!!!!!!!!!!");

            Console.ReadKey();
        }