├── .gitattributes ├── .gitignore ├── AdivinaAleatorio ├── AdivinaAleatorio.sln └── AdivinaAleatorio │ ├── AdivinaAleatorio.csproj │ └── Program.cs ├── AhorcaditoGrafico ├── AhorcaditoGrafico.sln └── AhorcaditoGrafico │ ├── AhorcaditoGrafico.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Logica.cs │ └── Program.cs ├── AhorcaditoSimple ├── AhorcaditoSimple.sln └── AhorcaditoSimple │ ├── AhorcaditoSimple.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Logica.cs │ └── Program.cs ├── ArregloAleatorioLetras ├── ArregloAleatorioLetras.sln └── ArregloAleatorioLetras │ ├── ArregloAleatorioLetras.csproj │ └── Program.cs ├── ArregloEstaturas ├── ArregloEstaturas.sln └── ArregloEstaturas │ ├── ArregloEstaturas.csproj │ └── Program.cs ├── ArregloPrimos ├── ArregloPrimos.sln └── ArregloPrimos │ ├── ArregloPrimos.csproj │ └── Program.cs ├── ArreglosEdadCaminar ├── ArreglosEdadCaminar.sln └── ArreglosEdadCaminar │ ├── ArreglosEdadCaminar.csproj │ └── Program.cs ├── BarajaEspanola ├── BarajaEspanola.sln └── BarajaEspanola │ ├── BarajaEspanola.csproj │ ├── Carta.cs │ └── Program.cs ├── CalculadoraBasica ├── CalculadoraBasica.sln └── CalculadoraBasica │ ├── CalculadoraBasica.csproj │ └── Program.cs ├── CalculoDetalladoEdad ├── CalculoDetalladoEdad.sln └── CalculoDetalladoEdad │ ├── CalculoDetalladoEdad.csproj │ └── Program.cs ├── CalculoTiempoSegundos ├── CalculoTiempoSegundos.sln └── CalculoTiempoSegundos │ ├── CalculoTiempoSegundos.csproj │ └── Program.cs ├── CalendarioMes ├── CalendarioMes.sln └── CalendarioMes │ ├── CalendarioMes.csproj │ └── Program.cs ├── CalificacionesPromedio ├── CalificacionesPromedio.sln └── CalificacionesPromedio │ ├── CalificacionesPromedio.csproj │ └── Program.cs ├── CiclosAsteriscos ├── CiclosAsteriscos.sln └── CiclosAsteriscos │ ├── CiclosAsteriscos.csproj │ └── Program.cs ├── ClasificaNumeros ├── ClasificaNumeros.sln └── ClasificaNumeros │ ├── ClasificaNumeros.csproj │ └── Program.cs ├── ClasificaTriangulos ├── ClasificaTriangulos.sln └── ClasificaTriangulos │ ├── ClasificaTriangulos.csproj │ └── Program.cs ├── CodigoMurcielago ├── CodigoMurcielago.sln └── CodigoMurcielago │ ├── CodigoMurcielago.csproj │ └── Program.cs ├── ComparaReinos ├── ComparaReinos.sln └── ComparaReinos │ ├── ComparaReinos.csproj │ └── Program.cs ├── ComparaReinosOO ├── ComparaReinosOO.sln └── ComparaReinosOO │ ├── ComparaReinosOO.csproj │ ├── Program.cs │ └── Reino.cs ├── ComponentesColores ├── ComponentesColores.sln └── ComponentesColores │ ├── ComponentesColores.csproj │ └── Program.cs ├── ConcursoSushi ├── ConcursoSushi.sln └── ConcursoSushi │ ├── ConcursoSushi.csproj │ ├── PedidoRollo.cs │ └── Program.cs ├── EjemploArgsConsola ├── EjemploArgsConsola.sln └── EjemploArgsConsola │ ├── EjemploArgsConsola.csproj │ └── Program.cs ├── EjemploArreglos ├── EjemploArreglos.sln └── EjemploArreglos │ ├── EjemploArreglos.csproj │ └── Program.cs ├── EjemploArreglosCaracteres ├── EjemploArreglosCaracteres.sln └── EjemploArreglosCaracteres │ ├── EjemploArreglosCaracteres.csproj │ └── Program.cs ├── EjemploCiclosControl ├── EjemploCiclosControl.sln └── EjemploCiclosControl │ ├── EjemploCiclosControl.csproj │ └── Program.cs ├── EjemploCondicionales ├── EjemploCondicionales.sln └── EjemploCondicionales │ ├── EjemploCondicionales.csproj │ └── Program.cs ├── EjemploFunciones ├── EjemploFunciones.sln └── EjemploFunciones │ ├── EjemploFunciones.csproj │ └── Program.cs ├── EjemploFuncionesArreglos ├── EjemploFuncionesArreglos.sln └── EjemploFuncionesArreglos │ ├── EjemploFuncionesArreglos.csproj │ └── Program.cs ├── EjemploMatrices ├── EjemploMatrices.sln └── EjemploMatrices │ ├── EjemploMatrices.csproj │ └── Program.cs ├── EjemploObjetos ├── EjemploObjetos.sln └── EjemploObjetos │ ├── EjemploObjetos.csproj │ ├── Persona.cs │ └── Program.cs ├── EjemploTipoParametrosFunciones ├── EjemploTipoParametrosFunciones.sln └── EjemploTipoParametrosFunciones │ ├── EjemploTipoParametrosFunciones.csproj │ └── Program.cs ├── EncuentraParejasNumeros ├── EncuentraParejasNumeros.sln └── EncuentraParejasNumeros │ ├── EncuentraParejasNumeros.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── LogicaJuego.cs │ └── Program.cs ├── EntradaDatos ├── EntradaDatos.sln └── EntradaDatos │ ├── EntradaDatos.csproj │ └── Program.cs ├── Ex01_ColonizacionSolar ├── Ex01_ColonizacionSolar.sln └── Ex01_ColonizacionSolar │ ├── Ex01_ColonizacionSolar.csproj │ └── Program.cs ├── Ex01_FumigacionDomiciliaria ├── Ex01_FumigacionDomiciliaria.sln └── Ex01_FumigacionDomiciliaria │ ├── Ex01_FumigacionDomiciliaria.csproj │ └── Program.cs ├── Ex01__GravityFalls ├── Ex01__GravityFalls.sln └── Ex01__GravityFalls │ ├── Ex01__GravityFalls.csproj │ └── Program.cs ├── Ex02_RiesgosInundaciones ├── Ex02_RiesgosInundaciones.sln └── Ex02_RiesgosInundaciones │ ├── Ex02_RiesgosInundaciones.csproj │ └── Program.cs ├── Ex03_PavimentacionCalles ├── Ex03_PavimentacionCalles.sln └── Ex03_PavimentacionCalles │ ├── Calle.cs │ ├── Ex03_PavimentacionCalles.csproj │ └── Program.cs ├── GananciasCelebridades ├── GananciasCelebridades.sln └── GananciasCelebridades │ ├── GananciasCelebridades.csproj │ └── Program.cs ├── GeneradorPasswords ├── GeneradorPasswords.sln └── GeneradorPasswords │ ├── GeneradorPasswords.csproj │ └── Program.cs ├── GraficadorSimple ├── GraficadorSimple.sln └── GraficadorSimple │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── GraficadorSimple.csproj │ ├── Logica.cs │ └── Program.cs ├── HolaMundo ├── HolaMundo.sln └── HolaMundo │ ├── HolaMundo.csproj │ └── Program.cs ├── IdentificaPalindromo ├── IdentificaPalindromo.sln └── IdentificaPalindromo │ ├── IdentificaPalindromo.csproj │ └── Program.cs ├── MaquinaExpendedoraComida ├── MaquinaExpendedoraComida.sln └── MaquinaExpendedoraComida │ ├── MaquinaExpendedoraComida.csproj │ ├── MaquinaVenta.cs │ ├── Program.cs │ └── Ubicacion.cs ├── MatricesNotasEstudiantes ├── MatricesNotasEstudiantes.sln └── MatricesNotasEstudiantes │ ├── MatricesNotasEstudiantes.csproj │ └── Program.cs ├── MatricesZoo ├── MatricesZoo.sln └── MatricesZoo │ ├── MatricesZoo.csproj │ └── Program.cs ├── MultiplesMayores ├── MultiplesMayores.sln ├── MultiplesMayores │ ├── MultiplesMayores.csproj │ └── Program.cs └── MultiplesMayores_Pruebas │ ├── MultiplesMayores_Pruebas.csproj │ ├── ProgramPruebas.cs │ └── Usings.cs ├── MultiplosTres ├── MultiplosTres.sln └── MultiplosTres │ ├── MultiplosTres.csproj │ └── Program.cs ├── NumeroNarcisista ├── NumeroNarcisista.sln └── NumeroNarcisista │ ├── NumeroNarcisista.csproj │ └── Program.cs ├── NumerosAmigos ├── NumerosAmigos.sln └── NumerosAmigos │ ├── NumerosAmigos.csproj │ └── Program.cs ├── NumerosDeficientes ├── NumerosDeficientes.sln └── NumerosDeficientes │ ├── NumerosDeficientes.csproj │ └── Program.cs ├── NumerosPerfectos ├── NumerosPerfectos.sln └── NumerosPerfectos │ ├── NumerosPerfectos.csproj │ └── Program.cs ├── OrdenaNumeros ├── OrdenaNumeros.sln └── OrdenaNumeros │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── OrdenaNumeros.csproj │ └── Program.cs ├── PagoImpuestos ├── PagoImpuestos.sln └── PagoImpuestos │ ├── PagoImpuestos.csproj │ └── Program.cs ├── PescaArtesanalOO ├── PescaArtesanalOO.sln └── PescaArtesanalOO │ ├── Pesca.cs │ ├── PescaArtesanalOO.csproj │ └── Program.cs ├── ProbarAnagramas ├── ProbarAnagramas.sln └── ProbarAnagramas │ ├── ProbarAnagramas.csproj │ └── Program.cs ├── ProduccionLana ├── ProduccionLana.sln └── ProduccionLana │ ├── Oveja.cs │ ├── ProduccionLana.csproj │ └── Program.cs ├── PromedioPonderadoNotas ├── PromedioPonderadoNotas.sln └── PromedioPonderadoNotas │ ├── Program.cs │ └── PromedioPonderadoNotas.csproj ├── PuntuacionEquipos ├── PuntuacionEquipos.sln └── PuntuacionEquipos │ ├── Program.cs │ └── PuntuacionEquipos.csproj ├── PuntuacionEquiposOO ├── PuntuacionEquiposOO.sln └── PuntuacionEquiposOO │ ├── Jugador.cs │ ├── Program.cs │ └── PuntuacionEquiposOO.csproj ├── README.md ├── RegistroSimCards ├── RegistroSimCards.sln └── RegistroSimCards │ ├── Program.cs │ ├── RegistroSimCards.csproj │ └── SimCard.cs ├── ServiciosPublicos ├── ServiciosPublicos.sln └── ServiciosPublicos │ ├── Program.cs │ ├── Servicio.cs │ └── ServiciosPublicos.csproj ├── SimRadio ├── SimRadio.sln └── SimRadio │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── SimRadio.csproj ├── SumaImparesHastaLimite ├── SumaImparesHastaLimite.sln └── SumaImparesHastaLimite │ ├── Program.cs │ └── SumaImparesHastaLimite.csproj ├── SumaMultiplosDe3y5 ├── SumaMultiplosDe3y5.sln └── SumaMultiplosDe3y5 │ ├── Program.cs │ └── SumaMultiplosDe3y5.csproj ├── TablaMultiplicar ├── TablaMultiplicar.sln └── TablaMultiplicar │ ├── Program.cs │ └── TablaMultiplicar.csproj ├── TiendaGalletas ├── TiendaGalletas.sln └── TiendaGalletas │ ├── Galleta.cs │ ├── Program.cs │ └── TiendaGalletas.csproj ├── TiendaGomitas ├── TiendaGomitas.sln └── TiendaGomitas │ ├── Gomita.cs │ ├── Program.cs │ └── TiendaGomitas.csproj ├── VacunacionEscolar ├── VacunacionEscolar.sln └── VacunacionEscolar │ ├── Program.cs │ └── VacunacionEscolar.csproj ├── ValidaBisiesto ├── ValidaBisiesto.sln └── ValidaBisiesto │ ├── Program.cs │ └── ValidaBisiesto.csproj ├── ValidaNumeroPrimo ├── ValidaNumeroPrimo.sln └── ValidaNumeroPrimo │ ├── Program.cs │ └── ValidaNumeroPrimo.csproj ├── ValidaRango ├── ValidaRango.sln └── ValidaRango │ ├── Program.cs │ └── ValidaRango.csproj ├── VentaEmpanadas ├── VentaEmpanadas.sln └── VentaEmpanadas │ ├── Empanada.cs │ ├── Program.cs │ └── VentaEmpanadas.csproj ├── Wordle_Simplificado ├── Wordle_Simplificado.sln └── Wordle_Simplificado │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Wordle_Simplificado.csproj ├── ZooPOO ├── ZooPOO.sln └── ZooPOO │ ├── Animal.cs │ ├── Program.cs │ └── ZooPOO.csproj ├── ex01_BuenLugar ├── ex01_BuenLugar.sln └── ex01_BuenLugar │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_BuenLugar.csproj ├── ex01_ConcursoOrquideas ├── ex01_ConcursoOrquideas.sln └── ex01_ConcursoOrquideas │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_ConcursoOrquideas.csproj ├── ex01_DesfileSilleteros ├── ex01_DesfileSilleteros.sln └── ex01_DesfileSilleteros │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_DesfileSilleteros.csproj ├── ex01_Divergente ├── ex01_Divergente.sln └── ex01_Divergente │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_Divergente.csproj ├── ex01_DungeonCraft ├── ex01_DungeonCraft.sln └── ex01_DungeonCraft │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_DungeonCraft.csproj ├── ex01_FinalSpaceRescate ├── ex01_FinalSpaceRescate.sln └── ex01_FinalSpaceRescate │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_FinalSpaceRescate.csproj ├── ex01_MaltratoMorty ├── ex01_MaltratoMorty.sln └── ex01_MaltratoMorty │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_MaltratoMorty.csproj ├── ex01_ProduccionLechera ├── ex01_ProduccionLechera.sln └── ex01_ProduccionLechera │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_ProduccionLechera.csproj ├── ex01_SombreroSeleccionador ├── ex01_SombreroSeleccionador.sln └── ex01_SombreroSeleccionador │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_SombreroSeleccionador.csproj ├── ex01_VacunacionEscolar ├── ex01_VacunacionEscolar.sln └── ex01_VacunacionEscolar │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_VacunacionEscolar.csproj ├── ex01_secuenciaADN ├── ex01_secuenciaADN.sln └── ex01_secuenciaADN │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex01_secuenciaADN.csproj ├── ex02_AterrizajeOptimo ├── ex02_AterrizajeOptimo.sln └── ex02_AterrizajeOptimo │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_AterrizajeOptimo.csproj ├── ex02_CerrosTutelares ├── ex02_CerrosTutelares.sln └── ex02_CerrosTutelares │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_CerrosTutelares.csproj ├── ex02_ColonizacionMarte ├── ex02_ColonizacionMarte.sln └── ex02_ColonizacionMarte │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_ColonizacionMarte.csproj ├── ex02_ContaminacionAire ├── ex02_ContaminacionAire.sln └── ex02_ContaminacionAire │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_ContaminacionAire.csproj ├── ex02_ConversionRGBaCMYK ├── ex02_ConversionRGBaCMYK.sln └── ex02_ConversionRGBaCMYK │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_ConversionRGBaCMYK.csproj ├── ex02_CoordenadasGeograficas ├── ex02_CoordenadasGeograficas.sln └── ex02_CoordenadasGeograficas │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_CoordenadasGeograficas.csproj ├── ex02_EleccionRepresentantes ├── ex02_EleccionRepresentantes.sln └── ex02_EleccionRepresentantes │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_EleccionRepresentantes.csproj ├── ex02_LiberandoWill ├── ex02_LiberandoWill.sln └── ex02_LiberandoWill │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_LiberandoWill.csproj ├── ex02_MatricesPescaArtesanal ├── ex02_MatricesPescaArtesanal.sln └── ex02_MatricesPescaArtesanal │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_MatricesPescaArtesanal.csproj ├── ex02_PescaRecreativa ├── ex02_PescaRecreativa.sln └── ex02_PescaRecreativa │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_PescaRecreativa.csproj ├── ex02_ReforestacionCorregimientos ├── ex02_ReforestacionCorregimientos.sln └── ex02_ReforestacionCorregimientos │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex02_ReforestacionCorregimientos.csproj ├── ex03_BurgerMaster ├── ex03_BurgerMaster.sln └── ex03_BurgerMaster │ ├── App.config │ ├── Pedido.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex03_BurgerMaster.csproj ├── ex03_CampeonDeBarrio ├── ex03_CampeonDeBarrio.sln └── ex03_CampeonDeBarrio │ ├── App.config │ ├── Jugador.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex03_CampeonDeBarrio.csproj ├── ex03_MedicionContaminacion ├── ex03_MedicionContaminacion.sln └── ex03_MedicionContaminacion │ ├── App.config │ ├── Medicion.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex03_MedicionContaminacion.csproj ├── ex03_ServiciosPublicos ├── ex03_ServiciosPublicos.sln └── ex03_ServiciosPublicos │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Servicio.cs │ └── ex03_ServiciosPublicos.csproj ├── ex03_SimulacroVacunacion ├── ex03_SimulacroVacunacion.sln └── ex03_SimulacroVacunacion │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Vacunado.cs │ └── ex03_SimulacroVacunacion.csproj ├── ex03_VentasBarrio ├── ex03_VentasBarrio.sln └── ex03_VentasBarrio │ ├── App.config │ ├── Pedido.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ex03_VentasBarrio.csproj ├── ex03_ViajesMetroplus ├── ex03_ViajesMetroplus.sln └── ex03_ViajesMetroplus │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Viaje.cs │ └── ex03_ViajesMetroplus.csproj ├── ex04_EncuentraParejasNumeros ├── ex04_EncuentraParejasNumeros.sln └── ex04_EncuentraParejasNumeros │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Logica.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── ex04_EncuentraParejasNumeros.csproj └── ex04_TiendaGomitas ├── ex04_TiendaGomitas.sln └── ex04_TiendaGomitas ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Gomita.cs ├── Logica.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── ex04_TiendaGomitas.csproj /AdivinaAleatorio/AdivinaAleatorio.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdivinaAleatorio", "AdivinaAleatorio\AdivinaAleatorio.csproj", "{5FF6D6E1-C439-4526-B432-5A608689E9A6}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {5FF6D6E1-C439-4526-B432-5A608689E9A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {5FF6D6E1-C439-4526-B432-5A608689E9A6}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {5FF6D6E1-C439-4526-B432-5A608689E9A6}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {5FF6D6E1-C439-4526-B432-5A608689E9A6}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {2923DB2F-5E80-4C06-8ACC-1015DC0B3C84} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AdivinaAleatorio/AdivinaAleatorio/AdivinaAleatorio.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AhorcaditoGrafico/AhorcaditoGrafico.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AhorcaditoGrafico", "AhorcaditoGrafico\AhorcaditoGrafico.csproj", "{DF5D6699-D935-4EB7-BEE6-BD5723AB8FBC}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DF5D6699-D935-4EB7-BEE6-BD5723AB8FBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {DF5D6699-D935-4EB7-BEE6-BD5723AB8FBC}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {DF5D6699-D935-4EB7-BEE6-BD5723AB8FBC}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {DF5D6699-D935-4EB7-BEE6-BD5723AB8FBC}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {362581CF-D87A-410E-B891-6D3F274548F6} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AhorcaditoGrafico/AhorcaditoGrafico/AhorcaditoGrafico.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net7.0-windows 6 | enable 7 | true 8 | enable 9 | 10 | 11 | -------------------------------------------------------------------------------- /AhorcaditoGrafico/AhorcaditoGrafico/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrodas/Csharp_funprog/229bc8acab8a7502eeae72c288fba39d64620e74/AhorcaditoGrafico/AhorcaditoGrafico/Form1.cs -------------------------------------------------------------------------------- /AhorcaditoGrafico/AhorcaditoGrafico/Program.cs: -------------------------------------------------------------------------------- 1 | namespace AhorcaditoGrafico 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | [STAThread] 9 | static void Main() 10 | { 11 | // To customize application configuration such as set high DPI settings or default font, 12 | // see https://aka.ms/applicationconfiguration. 13 | ApplicationConfiguration.Initialize(); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /AhorcaditoSimple/AhorcaditoSimple.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AhorcaditoSimple", "AhorcaditoSimple\AhorcaditoSimple.csproj", "{AE18DF4A-767A-406B-AF25-9F90A70D1B8A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {AE18DF4A-767A-406B-AF25-9F90A70D1B8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {AE18DF4A-767A-406B-AF25-9F90A70D1B8A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {AE18DF4A-767A-406B-AF25-9F90A70D1B8A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {AE18DF4A-767A-406B-AF25-9F90A70D1B8A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {35DF387D-07E8-4330-AFD0-D6B4DB059826} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AhorcaditoSimple/AhorcaditoSimple/AhorcaditoSimple.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net7.0-windows 6 | enable 7 | true 8 | enable 9 | 10 | 11 | -------------------------------------------------------------------------------- /AhorcaditoSimple/AhorcaditoSimple/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrodas/Csharp_funprog/229bc8acab8a7502eeae72c288fba39d64620e74/AhorcaditoSimple/AhorcaditoSimple/Form1.cs -------------------------------------------------------------------------------- /AhorcaditoSimple/AhorcaditoSimple/Program.cs: -------------------------------------------------------------------------------- 1 | namespace AhorcaditoSimple 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | [STAThread] 9 | static void Main() 10 | { 11 | // To customize application configuration such as set high DPI settings or default font, 12 | // see https://aka.ms/applicationconfiguration. 13 | ApplicationConfiguration.Initialize(); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /ArregloAleatorioLetras/ArregloAleatorioLetras.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArregloAleatorioLetras", "ArregloAleatorioLetras\ArregloAleatorioLetras.csproj", "{DC9C2693-5B65-4661-B041-66EB7B2649D7}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DC9C2693-5B65-4661-B041-66EB7B2649D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {DC9C2693-5B65-4661-B041-66EB7B2649D7}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {DC9C2693-5B65-4661-B041-66EB7B2649D7}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {DC9C2693-5B65-4661-B041-66EB7B2649D7}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {C4AE3EB6-27F5-4D02-B1E2-31E1D91C69C5} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ArregloAleatorioLetras/ArregloAleatorioLetras/ArregloAleatorioLetras.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ArregloEstaturas/ArregloEstaturas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArregloEstaturas", "ArregloEstaturas\ArregloEstaturas.csproj", "{C8B4C56C-A0F4-4027-B0D7-082ECC41B603}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C8B4C56C-A0F4-4027-B0D7-082ECC41B603}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C8B4C56C-A0F4-4027-B0D7-082ECC41B603}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C8B4C56C-A0F4-4027-B0D7-082ECC41B603}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C8B4C56C-A0F4-4027-B0D7-082ECC41B603}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {CBE63F48-0B37-4B10-9504-7972AA85CCF7} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ArregloEstaturas/ArregloEstaturas/ArregloEstaturas.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ArregloPrimos/ArregloPrimos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArregloPrimos", "ArregloPrimos\ArregloPrimos.csproj", "{80CA0727-E3D1-47E5-B5A6-4704A2ACB67E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {80CA0727-E3D1-47E5-B5A6-4704A2ACB67E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {80CA0727-E3D1-47E5-B5A6-4704A2ACB67E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {80CA0727-E3D1-47E5-B5A6-4704A2ACB67E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {80CA0727-E3D1-47E5-B5A6-4704A2ACB67E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D92185FA-8256-4AD3-8988-69E24BD1BF4C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ArregloPrimos/ArregloPrimos/ArregloPrimos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ArreglosEdadCaminar/ArreglosEdadCaminar.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArreglosEdadCaminar", "ArreglosEdadCaminar\ArreglosEdadCaminar.csproj", "{D5B0ABAB-5C76-4116-B571-1D5C16292B95}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {D5B0ABAB-5C76-4116-B571-1D5C16292B95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {D5B0ABAB-5C76-4116-B571-1D5C16292B95}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {D5B0ABAB-5C76-4116-B571-1D5C16292B95}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {D5B0ABAB-5C76-4116-B571-1D5C16292B95}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {65C52225-7263-440C-89DF-2628E4C0D981} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ArreglosEdadCaminar/ArreglosEdadCaminar/ArreglosEdadCaminar.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /BarajaEspanola/BarajaEspanola.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BarajaEspanola", "BarajaEspanola\BarajaEspanola.csproj", "{9090AF1E-8931-4D35-BC4F-F2DD24E3A748}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {9090AF1E-8931-4D35-BC4F-F2DD24E3A748}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {9090AF1E-8931-4D35-BC4F-F2DD24E3A748}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {9090AF1E-8931-4D35-BC4F-F2DD24E3A748}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {9090AF1E-8931-4D35-BC4F-F2DD24E3A748}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {10A7FF79-51A5-4D1E-A104-545E8560F1B4} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /BarajaEspanola/BarajaEspanola/BarajaEspanola.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /BarajaEspanola/BarajaEspanola/Carta.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace BarajaEspanola 3 | { 4 | public class Carta 5 | { 6 | //Atributos 7 | private string palo; 8 | private string valor; 9 | 10 | //Constructor de la clase 11 | public Carta() 12 | { 13 | palo = ""; 14 | valor = ""; 15 | } 16 | 17 | //Propiedades 18 | public string Palo 19 | { 20 | get { return palo; } 21 | set { palo = value; } 22 | } 23 | 24 | public string Valor 25 | { 26 | get { return valor; } 27 | set { valor = value; } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /CalculadoraBasica/CalculadoraBasica.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalculadoraBasica", "CalculadoraBasica\CalculadoraBasica.csproj", "{C7533F0F-1E1A-4392-8B51-FAEB68586F9C}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C7533F0F-1E1A-4392-8B51-FAEB68586F9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C7533F0F-1E1A-4392-8B51-FAEB68586F9C}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C7533F0F-1E1A-4392-8B51-FAEB68586F9C}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C7533F0F-1E1A-4392-8B51-FAEB68586F9C}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {EAD81896-BA06-4B00-A835-775DCB8BD15A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /CalculadoraBasica/CalculadoraBasica/CalculadoraBasica.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CalculoDetalladoEdad/CalculoDetalladoEdad.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalculoDetalladoEdad", "CalculoDetalladoEdad\CalculoDetalladoEdad.csproj", "{EEA71886-21D4-41B8-9D52-6F6285EA6C77}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {EEA71886-21D4-41B8-9D52-6F6285EA6C77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {EEA71886-21D4-41B8-9D52-6F6285EA6C77}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {EEA71886-21D4-41B8-9D52-6F6285EA6C77}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {EEA71886-21D4-41B8-9D52-6F6285EA6C77}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {0794BE74-D3CA-454A-A3C7-FB5D3F88316A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /CalculoDetalladoEdad/CalculoDetalladoEdad/CalculoDetalladoEdad.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CalculoTiempoSegundos/CalculoTiempoSegundos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalculoTiempoSegundos", "CalculoTiempoSegundos\CalculoTiempoSegundos.csproj", "{87FE26DC-71ED-44DA-B021-BC49793563DC}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {87FE26DC-71ED-44DA-B021-BC49793563DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {87FE26DC-71ED-44DA-B021-BC49793563DC}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {87FE26DC-71ED-44DA-B021-BC49793563DC}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {87FE26DC-71ED-44DA-B021-BC49793563DC}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {DA159480-6A33-4E82-AE59-1EED34CFCE0B} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /CalculoTiempoSegundos/CalculoTiempoSegundos/CalculoTiempoSegundos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CalendarioMes/CalendarioMes.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalendarioMes", "CalendarioMes\CalendarioMes.csproj", "{BBE46377-5489-4739-9265-296E46EE6072}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {BBE46377-5489-4739-9265-296E46EE6072}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {BBE46377-5489-4739-9265-296E46EE6072}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {BBE46377-5489-4739-9265-296E46EE6072}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {BBE46377-5489-4739-9265-296E46EE6072}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {C51F7A95-BDF1-489E-888D-58D3EA96CBDE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /CalendarioMes/CalendarioMes/CalendarioMes.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CalificacionesPromedio/CalificacionesPromedio.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalificacionesPromedio", "CalificacionesPromedio\CalificacionesPromedio.csproj", "{1F8ACA9F-3D55-4672-88B3-F7B63EFA4A79}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {1F8ACA9F-3D55-4672-88B3-F7B63EFA4A79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {1F8ACA9F-3D55-4672-88B3-F7B63EFA4A79}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {1F8ACA9F-3D55-4672-88B3-F7B63EFA4A79}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {1F8ACA9F-3D55-4672-88B3-F7B63EFA4A79}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {013D764E-CB68-41CA-8E04-E98F6F258FFE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /CalificacionesPromedio/CalificacionesPromedio/CalificacionesPromedio.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CiclosAsteriscos/CiclosAsteriscos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CiclosAsteriscos", "CiclosAsteriscos\CiclosAsteriscos.csproj", "{B012E6C2-E323-464F-9738-6720CA812A4B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B012E6C2-E323-464F-9738-6720CA812A4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B012E6C2-E323-464F-9738-6720CA812A4B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B012E6C2-E323-464F-9738-6720CA812A4B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B012E6C2-E323-464F-9738-6720CA812A4B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {F2E50E74-B860-42FB-A612-4D1EADF77513} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /CiclosAsteriscos/CiclosAsteriscos/CiclosAsteriscos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ClasificaNumeros/ClasificaNumeros.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClasificaNumeros", "ClasificaNumeros\ClasificaNumeros.csproj", "{7CA75DEA-0B36-446A-94D3-3F6FF26E538D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {7CA75DEA-0B36-446A-94D3-3F6FF26E538D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {7CA75DEA-0B36-446A-94D3-3F6FF26E538D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {7CA75DEA-0B36-446A-94D3-3F6FF26E538D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {7CA75DEA-0B36-446A-94D3-3F6FF26E538D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {6DAB9A14-4A6F-4637-9741-D5EB117551E2} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ClasificaNumeros/ClasificaNumeros/ClasificaNumeros.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ClasificaTriangulos/ClasificaTriangulos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClasificaTriangulos", "ClasificaTriangulos\ClasificaTriangulos.csproj", "{2440A41A-4A11-4518-8632-41C1F44CEE12}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {2440A41A-4A11-4518-8632-41C1F44CEE12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {2440A41A-4A11-4518-8632-41C1F44CEE12}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {2440A41A-4A11-4518-8632-41C1F44CEE12}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {2440A41A-4A11-4518-8632-41C1F44CEE12}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {32EEC6D9-297A-4B6F-B85A-EB37AC7D8E25} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ClasificaTriangulos/ClasificaTriangulos/ClasificaTriangulos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CodigoMurcielago/CodigoMurcielago.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodigoMurcielago", "CodigoMurcielago\CodigoMurcielago.csproj", "{FFDE31F0-C0FE-4FD1-B45C-E0DE6B6E1DF9}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {FFDE31F0-C0FE-4FD1-B45C-E0DE6B6E1DF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {FFDE31F0-C0FE-4FD1-B45C-E0DE6B6E1DF9}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {FFDE31F0-C0FE-4FD1-B45C-E0DE6B6E1DF9}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {FFDE31F0-C0FE-4FD1-B45C-E0DE6B6E1DF9}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {3156290A-A578-41D3-9C10-FEAE85D5DE4B} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /CodigoMurcielago/CodigoMurcielago/CodigoMurcielago.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ComparaReinos/ComparaReinos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComparaReinos", "ComparaReinos\ComparaReinos.csproj", "{AD6500F7-F185-4733-B719-9A5DD1705B02}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {AD6500F7-F185-4733-B719-9A5DD1705B02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {AD6500F7-F185-4733-B719-9A5DD1705B02}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {AD6500F7-F185-4733-B719-9A5DD1705B02}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {AD6500F7-F185-4733-B719-9A5DD1705B02}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {57136A9B-DD59-4500-BDC1-C9517E99DED7} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ComparaReinos/ComparaReinos/ComparaReinos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ComparaReinosOO/ComparaReinosOO.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComparaReinosOO", "ComparaReinosOO\ComparaReinosOO.csproj", "{201ECAC8-E9BD-4BFB-A9A9-F4A12A9864C7}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {201ECAC8-E9BD-4BFB-A9A9-F4A12A9864C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {201ECAC8-E9BD-4BFB-A9A9-F4A12A9864C7}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {201ECAC8-E9BD-4BFB-A9A9-F4A12A9864C7}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {201ECAC8-E9BD-4BFB-A9A9-F4A12A9864C7}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {67C2F683-0111-4964-BFA8-70FB9DE55ECE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ComparaReinosOO/ComparaReinosOO/ComparaReinosOO.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ComponentesColores/ComponentesColores.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.8.34330.188 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentesColores", "ComponentesColores\ComponentesColores.csproj", "{274B9765-5BF7-4355-A318-D54ACE1706F5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {274B9765-5BF7-4355-A318-D54ACE1706F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {274B9765-5BF7-4355-A318-D54ACE1706F5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {274B9765-5BF7-4355-A318-D54ACE1706F5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {274B9765-5BF7-4355-A318-D54ACE1706F5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {7881CEDE-0134-431F-AD99-187D8A57130E} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ComponentesColores/ComponentesColores/ComponentesColores.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | disable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ConcursoSushi/ConcursoSushi.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConcursoSushi", "ConcursoSushi\ConcursoSushi.csproj", "{B942D96D-C62F-4E9B-ACB7-B57C562F7E78}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B942D96D-C62F-4E9B-ACB7-B57C562F7E78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B942D96D-C62F-4E9B-ACB7-B57C562F7E78}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B942D96D-C62F-4E9B-ACB7-B57C562F7E78}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B942D96D-C62F-4E9B-ACB7-B57C562F7E78}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {0922CBD3-219C-44C7-B317-57EC11E4F063} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ConcursoSushi/ConcursoSushi/ConcursoSushi.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploArgsConsola/EjemploArgsConsola.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploArgsConsola", "EjemploArgsConsola\EjemploArgsConsola.csproj", "{8D2FC19F-70FD-4244-A54F-ECDA3C8F0357}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8D2FC19F-70FD-4244-A54F-ECDA3C8F0357}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8D2FC19F-70FD-4244-A54F-ECDA3C8F0357}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8D2FC19F-70FD-4244-A54F-ECDA3C8F0357}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8D2FC19F-70FD-4244-A54F-ECDA3C8F0357}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {6F26D8BD-4680-402A-9204-72B2B6373FAC} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploArgsConsola/EjemploArgsConsola/EjemploArgsConsola.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploArreglos/EjemploArreglos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploArreglos", "EjemploArreglos\EjemploArreglos.csproj", "{8D912F83-5FDF-4798-9490-4C27A68CCF2D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8D912F83-5FDF-4798-9490-4C27A68CCF2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8D912F83-5FDF-4798-9490-4C27A68CCF2D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8D912F83-5FDF-4798-9490-4C27A68CCF2D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8D912F83-5FDF-4798-9490-4C27A68CCF2D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {65263EDE-6686-450C-8667-42AA602D57EF} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploArreglos/EjemploArreglos/EjemploArreglos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploArreglosCaracteres/EjemploArreglosCaracteres.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploArreglosCaracteres", "EjemploArreglosCaracteres\EjemploArreglosCaracteres.csproj", "{4DEE2698-E3A9-4D64-9657-46AF3C0E0E6D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {4DEE2698-E3A9-4D64-9657-46AF3C0E0E6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {4DEE2698-E3A9-4D64-9657-46AF3C0E0E6D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {4DEE2698-E3A9-4D64-9657-46AF3C0E0E6D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {4DEE2698-E3A9-4D64-9657-46AF3C0E0E6D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {65CB2146-BD28-4A49-892A-F7A9882CC618} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploArreglosCaracteres/EjemploArreglosCaracteres/EjemploArreglosCaracteres.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploCiclosControl/EjemploCiclosControl.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploCiclosControl", "EjemploCiclosControl\EjemploCiclosControl.csproj", "{68DDE261-F724-4A8D-B827-F42000083807}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {68DDE261-F724-4A8D-B827-F42000083807}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {68DDE261-F724-4A8D-B827-F42000083807}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {68DDE261-F724-4A8D-B827-F42000083807}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {68DDE261-F724-4A8D-B827-F42000083807}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {F105B44A-B56E-459F-BF41-7AC2BFA6C1AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploCiclosControl/EjemploCiclosControl/EjemploCiclosControl.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploCondicionales/EjemploCondicionales.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploCondicionales", "EjemploCondicionales\EjemploCondicionales.csproj", "{5C25772A-2142-46A3-B430-94514751B86A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {5C25772A-2142-46A3-B430-94514751B86A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {5C25772A-2142-46A3-B430-94514751B86A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {5C25772A-2142-46A3-B430-94514751B86A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {5C25772A-2142-46A3-B430-94514751B86A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {9266C242-F224-4BE6-B649-3DA8330B8F04} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploCondicionales/EjemploCondicionales/EjemploCondicionales.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploFunciones/EjemploFunciones.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploFunciones", "EjemploFunciones\EjemploFunciones.csproj", "{6F6C2A48-5E8E-46AD-9DD8-EF8F8DA1534A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {6F6C2A48-5E8E-46AD-9DD8-EF8F8DA1534A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {6F6C2A48-5E8E-46AD-9DD8-EF8F8DA1534A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {6F6C2A48-5E8E-46AD-9DD8-EF8F8DA1534A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {6F6C2A48-5E8E-46AD-9DD8-EF8F8DA1534A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A1767835-4229-4D23-B654-FEDA1205C853} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploFunciones/EjemploFunciones/EjemploFunciones.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploFuncionesArreglos/EjemploFuncionesArreglos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploFuncionesArreglos", "EjemploFuncionesArreglos\EjemploFuncionesArreglos.csproj", "{D1E1C712-9219-41CE-B205-B506DDCD9DCA}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {D1E1C712-9219-41CE-B205-B506DDCD9DCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {D1E1C712-9219-41CE-B205-B506DDCD9DCA}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {D1E1C712-9219-41CE-B205-B506DDCD9DCA}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {D1E1C712-9219-41CE-B205-B506DDCD9DCA}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {7BB73098-3D96-48C5-93AE-9227B3EC2093} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploFuncionesArreglos/EjemploFuncionesArreglos/EjemploFuncionesArreglos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploMatrices/EjemploMatrices.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploMatrices", "EjemploMatrices\EjemploMatrices.csproj", "{22BDC675-214B-4907-9268-60754037BE2E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {22BDC675-214B-4907-9268-60754037BE2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {22BDC675-214B-4907-9268-60754037BE2E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {22BDC675-214B-4907-9268-60754037BE2E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {22BDC675-214B-4907-9268-60754037BE2E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {92E6FF03-9E0F-4486-AD2B-B77EA4A1271D} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploMatrices/EjemploMatrices/EjemploMatrices.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploObjetos/EjemploObjetos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.33516.290 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploObjetos", "EjemploObjetos\EjemploObjetos.csproj", "{52FCEBA4-5493-473F-9657-AF297D8EA05D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {52FCEBA4-5493-473F-9657-AF297D8EA05D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {52FCEBA4-5493-473F-9657-AF297D8EA05D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {52FCEBA4-5493-473F-9657-AF297D8EA05D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {52FCEBA4-5493-473F-9657-AF297D8EA05D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {342C8C62-2A58-4761-8FEE-CE0675B19A22} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploObjetos/EjemploObjetos/EjemploObjetos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EjemploTipoParametrosFunciones/EjemploTipoParametrosFunciones.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EjemploTipoParametrosFunciones", "EjemploTipoParametrosFunciones\EjemploTipoParametrosFunciones.csproj", "{85ABCE27-B338-4600-BAEC-877D7F085684}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {85ABCE27-B338-4600-BAEC-877D7F085684}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {85ABCE27-B338-4600-BAEC-877D7F085684}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {85ABCE27-B338-4600-BAEC-877D7F085684}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {85ABCE27-B338-4600-BAEC-877D7F085684}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {7A7588C9-A889-49E0-93D2-8367D08FFFCE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EjemploTipoParametrosFunciones/EjemploTipoParametrosFunciones/EjemploTipoParametrosFunciones.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /EncuentraParejasNumeros/EncuentraParejasNumeros.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EncuentraParejasNumeros", "EncuentraParejasNumeros\EncuentraParejasNumeros.csproj", "{DA6AB5BE-06C0-4A76-AB34-B2C398A551D4}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DA6AB5BE-06C0-4A76-AB34-B2C398A551D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {DA6AB5BE-06C0-4A76-AB34-B2C398A551D4}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {DA6AB5BE-06C0-4A76-AB34-B2C398A551D4}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {DA6AB5BE-06C0-4A76-AB34-B2C398A551D4}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {1121723F-290A-49CF-A849-29BF112CDB1D} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EncuentraParejasNumeros/EncuentraParejasNumeros/EncuentraParejasNumeros.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net7.0-windows 6 | enable 7 | true 8 | enable 9 | 10 | 11 | -------------------------------------------------------------------------------- /EncuentraParejasNumeros/EncuentraParejasNumeros/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrodas/Csharp_funprog/229bc8acab8a7502eeae72c288fba39d64620e74/EncuentraParejasNumeros/EncuentraParejasNumeros/Form1.cs -------------------------------------------------------------------------------- /EncuentraParejasNumeros/EncuentraParejasNumeros/Program.cs: -------------------------------------------------------------------------------- 1 | namespace EncuentraParejasNumeros 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | [STAThread] 9 | static void Main() 10 | { 11 | // To customize application configuration such as set high DPI settings or default font, 12 | // see https://aka.ms/applicationconfiguration. 13 | ApplicationConfiguration.Initialize(); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /EntradaDatos/EntradaDatos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntradaDatos", "EntradaDatos\EntradaDatos.csproj", "{B637D095-B2AC-43ED-948D-411B9C7F925E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B637D095-B2AC-43ED-948D-411B9C7F925E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B637D095-B2AC-43ED-948D-411B9C7F925E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B637D095-B2AC-43ED-948D-411B9C7F925E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B637D095-B2AC-43ED-948D-411B9C7F925E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A0F8C8E6-1AB5-4851-BD37-85874ED449A1} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EntradaDatos/EntradaDatos/EntradaDatos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Ex01_ColonizacionSolar/Ex01_ColonizacionSolar.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33205.214 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ex01_ColonizacionSolar", "Ex01_ColonizacionSolar\Ex01_ColonizacionSolar.csproj", "{77578C4E-7FF2-41DB-AE65-732CCF1876FE}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {77578C4E-7FF2-41DB-AE65-732CCF1876FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {77578C4E-7FF2-41DB-AE65-732CCF1876FE}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {77578C4E-7FF2-41DB-AE65-732CCF1876FE}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {77578C4E-7FF2-41DB-AE65-732CCF1876FE}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A9AC5608-2CF2-4042-B8FD-D0F8F6451EBB} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Ex01_ColonizacionSolar/Ex01_ColonizacionSolar/Ex01_ColonizacionSolar.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Ex01_FumigacionDomiciliaria/Ex01_FumigacionDomiciliaria.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33205.214 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ex01_FumigacionDomiciliaria", "Ex01_FumigacionDomiciliaria\Ex01_FumigacionDomiciliaria.csproj", "{346FABC4-3B45-4449-943B-1928B88376E3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {346FABC4-3B45-4449-943B-1928B88376E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {346FABC4-3B45-4449-943B-1928B88376E3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {346FABC4-3B45-4449-943B-1928B88376E3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {346FABC4-3B45-4449-943B-1928B88376E3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {AA50868F-C07D-494D-9284-F17B293637D6} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Ex01_FumigacionDomiciliaria/Ex01_FumigacionDomiciliaria/Ex01_FumigacionDomiciliaria.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Ex01__GravityFalls/Ex01__GravityFalls.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33205.214 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ex01__GravityFalls", "Ex01__GravityFalls\Ex01__GravityFalls.csproj", "{AC8DE645-1C7E-4D24-AA81-95B3907F9505}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {AC8DE645-1C7E-4D24-AA81-95B3907F9505}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {AC8DE645-1C7E-4D24-AA81-95B3907F9505}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {AC8DE645-1C7E-4D24-AA81-95B3907F9505}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {AC8DE645-1C7E-4D24-AA81-95B3907F9505}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {93535F99-C922-4CC9-BC54-62CFDEC6672C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Ex01__GravityFalls/Ex01__GravityFalls/Ex01__GravityFalls.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net7.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Ex02_RiesgosInundaciones/Ex02_RiesgosInundaciones.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.33516.290 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ex02_RiesgosInundaciones", "Ex02_RiesgosInundaciones\Ex02_RiesgosInundaciones.csproj", "{09C03F22-7E35-414C-A4EE-C012F725E879}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {09C03F22-7E35-414C-A4EE-C012F725E879}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {09C03F22-7E35-414C-A4EE-C012F725E879}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {09C03F22-7E35-414C-A4EE-C012F725E879}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {09C03F22-7E35-414C-A4EE-C012F725E879}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {8A338D84-1F7F-49A1-A7F6-9FB3CC97C034} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Ex02_RiesgosInundaciones/Ex02_RiesgosInundaciones/Ex02_RiesgosInundaciones.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net7.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Ex03_PavimentacionCalles/Ex03_PavimentacionCalles.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.33530.505 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ex03_PavimentacionCalles", "Ex03_PavimentacionCalles\Ex03_PavimentacionCalles.csproj", "{38276BC1-2295-47AD-9F83-C1E38806F03B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {38276BC1-2295-47AD-9F83-C1E38806F03B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {38276BC1-2295-47AD-9F83-C1E38806F03B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {38276BC1-2295-47AD-9F83-C1E38806F03B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {38276BC1-2295-47AD-9F83-C1E38806F03B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {56C1FDDC-CB12-426A-9DA4-7E54BC3A30A0} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Ex03_PavimentacionCalles/Ex03_PavimentacionCalles/Calle.cs: -------------------------------------------------------------------------------- 1 | namespace Ex03_PavimentacionCalles 2 | { 3 | public class Calle 4 | { 5 | //Atributos de la clase 6 | private string tipoDeterioro; 7 | private int longitud; 8 | private double tramoAfectado; 9 | 10 | //Constructor de la clase 11 | public Calle() 12 | { 13 | tipoDeterioro = string.Empty; 14 | longitud = 0; 15 | tramoAfectado = 0; 16 | } 17 | 18 | //Propiedades vinculadas a los atributos 19 | public string TipoDeterioro 20 | { 21 | get { return tipoDeterioro; } 22 | set { tipoDeterioro = value; } 23 | } 24 | 25 | public int Longitud 26 | { 27 | get { return longitud; } 28 | set { longitud = value; } 29 | } 30 | 31 | public double TramoAfectado 32 | { 33 | get { return tramoAfectado; } 34 | set { tramoAfectado = value; } 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /Ex03_PavimentacionCalles/Ex03_PavimentacionCalles/Ex03_PavimentacionCalles.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net7.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /GananciasCelebridades/GananciasCelebridades.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GananciasCelebridades", "GananciasCelebridades\GananciasCelebridades.csproj", "{B589C7D0-CB9B-4CAA-A52F-5DB8DCD5786A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B589C7D0-CB9B-4CAA-A52F-5DB8DCD5786A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B589C7D0-CB9B-4CAA-A52F-5DB8DCD5786A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B589C7D0-CB9B-4CAA-A52F-5DB8DCD5786A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B589C7D0-CB9B-4CAA-A52F-5DB8DCD5786A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {41B687B0-A520-4576-90DE-4093D2BFC170} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /GananciasCelebridades/GananciasCelebridades/GananciasCelebridades.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /GeneradorPasswords/GeneradorPasswords.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.8.34330.188 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneradorPasswords", "GeneradorPasswords\GeneradorPasswords.csproj", "{36C39BD4-E5A0-433F-960A-65DCEB0A221F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {36C39BD4-E5A0-433F-960A-65DCEB0A221F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {36C39BD4-E5A0-433F-960A-65DCEB0A221F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {36C39BD4-E5A0-433F-960A-65DCEB0A221F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {36C39BD4-E5A0-433F-960A-65DCEB0A221F}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D02CFD0A-659C-4492-BB30-A545689C5708} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /GeneradorPasswords/GeneradorPasswords/GeneradorPasswords.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /GraficadorSimple/GraficadorSimple.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GraficadorSimple", "GraficadorSimple\GraficadorSimple.csproj", "{5674B067-FEE8-44F5-A5E4-1C25837FCD1F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {5674B067-FEE8-44F5-A5E4-1C25837FCD1F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {5674B067-FEE8-44F5-A5E4-1C25837FCD1F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {5674B067-FEE8-44F5-A5E4-1C25837FCD1F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {5674B067-FEE8-44F5-A5E4-1C25837FCD1F}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {C852F7BF-AFF9-4003-8E21-117D8BB62935} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /GraficadorSimple/GraficadorSimple/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrodas/Csharp_funprog/229bc8acab8a7502eeae72c288fba39d64620e74/GraficadorSimple/GraficadorSimple/Form1.cs -------------------------------------------------------------------------------- /GraficadorSimple/GraficadorSimple/GraficadorSimple.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net7.0-windows 6 | enable 7 | true 8 | enable 9 | 10 | 11 | -------------------------------------------------------------------------------- /GraficadorSimple/GraficadorSimple/Program.cs: -------------------------------------------------------------------------------- 1 | namespace GraficadorSimple 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | [STAThread] 9 | static void Main() 10 | { 11 | // To customize application configuration such as set high DPI settings or default font, 12 | // see https://aka.ms/applicationconfiguration. 13 | ApplicationConfiguration.Initialize(); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /HolaMundo/HolaMundo.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HolaMundo", "HolaMundo\HolaMundo.csproj", "{47B3B0F5-5305-4FB0-864D-2C1B7F5D137A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {47B3B0F5-5305-4FB0-864D-2C1B7F5D137A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {47B3B0F5-5305-4FB0-864D-2C1B7F5D137A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {47B3B0F5-5305-4FB0-864D-2C1B7F5D137A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {47B3B0F5-5305-4FB0-864D-2C1B7F5D137A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {29C26ABE-BA6F-4340-9F71-D1E5608510B8} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /HolaMundo/HolaMundo/HolaMundo.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /IdentificaPalindromo/IdentificaPalindromo.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IdentificaPalindromo", "IdentificaPalindromo\IdentificaPalindromo.csproj", "{B19EC506-0E9C-49DF-A265-AE1EA0408FC2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B19EC506-0E9C-49DF-A265-AE1EA0408FC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B19EC506-0E9C-49DF-A265-AE1EA0408FC2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B19EC506-0E9C-49DF-A265-AE1EA0408FC2}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B19EC506-0E9C-49DF-A265-AE1EA0408FC2}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {432C2C2C-AE30-4DB6-B5E4-746C0EB3B9ED} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /IdentificaPalindromo/IdentificaPalindromo/IdentificaPalindromo.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MaquinaExpendedoraComida/MaquinaExpendedoraComida.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MaquinaExpendedoraComida", "MaquinaExpendedoraComida\MaquinaExpendedoraComida.csproj", "{01799539-63BE-4CE1-9C26-6DBDD96CF779}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {01799539-63BE-4CE1-9C26-6DBDD96CF779}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {01799539-63BE-4CE1-9C26-6DBDD96CF779}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {01799539-63BE-4CE1-9C26-6DBDD96CF779}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {01799539-63BE-4CE1-9C26-6DBDD96CF779}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {FBB141E9-6168-4FE9-BEAB-0DDC28A4EBDE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /MaquinaExpendedoraComida/MaquinaExpendedoraComida/MaquinaExpendedoraComida.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MaquinaExpendedoraComida/MaquinaExpendedoraComida/Ubicacion.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MaquinaExpendedoraComida 3 | { 4 | class Ubicacion 5 | { 6 | //Propiedades de la clase 7 | public string Identificacion { get; set; } 8 | public string NombreProducto { get; set; } 9 | public int Cantidad { get; set; } 10 | public int Valor { get; set; } 11 | 12 | //constructor de la clase 13 | public Ubicacion() 14 | { 15 | Identificacion = ""; 16 | NombreProducto = ""; 17 | Valor = 0; 18 | Cantidad = 0; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /MatricesNotasEstudiantes/MatricesNotasEstudiantes.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.33516.290 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MatricesNotasEstudiantes", "MatricesNotasEstudiantes\MatricesNotasEstudiantes.csproj", "{7E1F039B-909B-493B-9E4D-511AF790BDF5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {7E1F039B-909B-493B-9E4D-511AF790BDF5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {7E1F039B-909B-493B-9E4D-511AF790BDF5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {7E1F039B-909B-493B-9E4D-511AF790BDF5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {7E1F039B-909B-493B-9E4D-511AF790BDF5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {DC1EFE4D-4EDD-4EAC-A931-50EA4AD4CA42} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /MatricesNotasEstudiantes/MatricesNotasEstudiantes/MatricesNotasEstudiantes.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MatricesZoo/MatricesZoo.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.1.32319.34 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MatricesZoo", "MatricesZoo\MatricesZoo.csproj", "{C28C9D22-1DED-457B-8BDC-EC4D650C13CA}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C28C9D22-1DED-457B-8BDC-EC4D650C13CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C28C9D22-1DED-457B-8BDC-EC4D650C13CA}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C28C9D22-1DED-457B-8BDC-EC4D650C13CA}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C28C9D22-1DED-457B-8BDC-EC4D650C13CA}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {C4F2DD5F-C2A8-4FC3-B19A-0F97C02A4176} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /MatricesZoo/MatricesZoo/MatricesZoo.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MultiplesMayores/MultiplesMayores/MultiplesMayores.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MultiplesMayores/MultiplesMayores_Pruebas/MultiplesMayores_Pruebas.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | false 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | all 17 | runtime; build; native; contentfiles; analyzers; buildtransitive 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /MultiplesMayores/MultiplesMayores_Pruebas/ProgramPruebas.cs: -------------------------------------------------------------------------------- 1 | namespace MultiplesMayores.Pruebas 2 | { 3 | [TestClass()] 4 | public class ProgramPruebas 5 | { 6 | [TestMethod()] 7 | public void IdentificaUnicoMayor() 8 | { 9 | //Arrange - Arreglar/Organizar/Preparar 10 | int[] numerosPrueba = { 13, 19, 0, -1, -45 }; 11 | 12 | //Act - Actuar/Ejecutar 13 | Program.EncuentraMayores(numerosPrueba, out int _, out int cantidadVeces); 14 | 15 | //Assert - Validar/Comprobar/Verificar 16 | int cantidadEsperada = 1; 17 | Assert.AreEqual(cantidadEsperada, cantidadVeces); 18 | } 19 | 20 | [TestMethod()] 21 | public void PruebaValorMayor() 22 | { 23 | //Arrange - Arreglar/Organizar/Preparar 24 | int[] numerosPrueba = { 10, 20, 30, -80, 80 }; 25 | 26 | //Act - Actuar/Ejecutar 27 | Program.EncuentraMayores(numerosPrueba, out int numeroMayor, out int _); 28 | 29 | //Assert - Validar/Comprobar/Verificar 30 | int valorEsperado = 80; 31 | Assert.AreEqual(valorEsperado, numeroMayor); 32 | } 33 | } 34 | } -------------------------------------------------------------------------------- /MultiplesMayores/MultiplesMayores_Pruebas/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Microsoft.VisualStudio.TestTools.UnitTesting; -------------------------------------------------------------------------------- /MultiplosTres/MultiplosTres.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiplosTres", "MultiplosTres\MultiplosTres.csproj", "{21558F64-A760-440D-A1F9-97243E8614E6}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {21558F64-A760-440D-A1F9-97243E8614E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {21558F64-A760-440D-A1F9-97243E8614E6}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {21558F64-A760-440D-A1F9-97243E8614E6}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {21558F64-A760-440D-A1F9-97243E8614E6}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {7ED100CF-C9D5-424A-A34E-25536846572D} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /MultiplosTres/MultiplosTres/MultiplosTres.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /NumeroNarcisista/NumeroNarcisista.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NumeroNarcisista", "NumeroNarcisista\NumeroNarcisista.csproj", "{BAE46B91-4A5E-4156-8B3A-C2D7A8C8D447}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {BAE46B91-4A5E-4156-8B3A-C2D7A8C8D447}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {BAE46B91-4A5E-4156-8B3A-C2D7A8C8D447}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {BAE46B91-4A5E-4156-8B3A-C2D7A8C8D447}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {BAE46B91-4A5E-4156-8B3A-C2D7A8C8D447}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {7553AEEA-6C7A-426D-B847-64311C956874} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /NumeroNarcisista/NumeroNarcisista/NumeroNarcisista.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /NumerosAmigos/NumerosAmigos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NumerosAmigos", "NumerosAmigos\NumerosAmigos.csproj", "{3EF79B93-5BDD-4030-B4A3-BC50D77BA3B3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3EF79B93-5BDD-4030-B4A3-BC50D77BA3B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3EF79B93-5BDD-4030-B4A3-BC50D77BA3B3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3EF79B93-5BDD-4030-B4A3-BC50D77BA3B3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3EF79B93-5BDD-4030-B4A3-BC50D77BA3B3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {ABC73CA8-FC5E-4543-A969-116D8B3AF996} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /NumerosAmigos/NumerosAmigos/NumerosAmigos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /NumerosDeficientes/NumerosDeficientes.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NumerosDeficientes", "NumerosDeficientes\NumerosDeficientes.csproj", "{12CA001B-95DC-47B5-B702-6FE3B79FD953}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {12CA001B-95DC-47B5-B702-6FE3B79FD953}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {12CA001B-95DC-47B5-B702-6FE3B79FD953}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {12CA001B-95DC-47B5-B702-6FE3B79FD953}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {12CA001B-95DC-47B5-B702-6FE3B79FD953}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {74FC3893-321B-4A17-BC07-95086AC8EA01} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /NumerosDeficientes/NumerosDeficientes/NumerosDeficientes.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /NumerosPerfectos/NumerosPerfectos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NumerosPerfectos", "NumerosPerfectos\NumerosPerfectos.csproj", "{359307A8-976E-41F6-B478-8E51EBE0F5F0}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {359307A8-976E-41F6-B478-8E51EBE0F5F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {359307A8-976E-41F6-B478-8E51EBE0F5F0}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {359307A8-976E-41F6-B478-8E51EBE0F5F0}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {359307A8-976E-41F6-B478-8E51EBE0F5F0}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {23014128-21B4-4B55-A624-9FF26F9AA934} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /NumerosPerfectos/NumerosPerfectos/NumerosPerfectos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /OrdenaNumeros/OrdenaNumeros.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OrdenaNumeros", "OrdenaNumeros\OrdenaNumeros.csproj", "{78FD20E0-D3FE-490D-A608-297436077949}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {78FD20E0-D3FE-490D-A608-297436077949}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {78FD20E0-D3FE-490D-A608-297436077949}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {78FD20E0-D3FE-490D-A608-297436077949}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {78FD20E0-D3FE-490D-A608-297436077949}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {4F3E4BCF-D228-4176-B9DD-ED9962CC6520} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /OrdenaNumeros/OrdenaNumeros/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrodas/Csharp_funprog/229bc8acab8a7502eeae72c288fba39d64620e74/OrdenaNumeros/OrdenaNumeros/Form1.cs -------------------------------------------------------------------------------- /OrdenaNumeros/OrdenaNumeros/OrdenaNumeros.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net7.0-windows 6 | enable 7 | true 8 | enable 9 | 10 | 11 | -------------------------------------------------------------------------------- /OrdenaNumeros/OrdenaNumeros/Program.cs: -------------------------------------------------------------------------------- 1 | namespace OrdenaNumeros 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | [STAThread] 9 | static void Main() 10 | { 11 | // To customize application configuration such as set high DPI settings or default font, 12 | // see https://aka.ms/applicationconfiguration. 13 | ApplicationConfiguration.Initialize(); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /PagoImpuestos/PagoImpuestos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PagoImpuestos", "PagoImpuestos\PagoImpuestos.csproj", "{FA427BB9-4549-41C9-94EE-31BE7BB7EDB7}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {FA427BB9-4549-41C9-94EE-31BE7BB7EDB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {FA427BB9-4549-41C9-94EE-31BE7BB7EDB7}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {FA427BB9-4549-41C9-94EE-31BE7BB7EDB7}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {FA427BB9-4549-41C9-94EE-31BE7BB7EDB7}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {CE356C80-4F9B-4D94-9E98-9B02F7236779} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /PagoImpuestos/PagoImpuestos/PagoImpuestos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PescaArtesanalOO/PescaArtesanalOO.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PescaArtesanalOO", "PescaArtesanalOO\PescaArtesanalOO.csproj", "{AC339CB6-50B7-4801-AA10-A82256F8BE26}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {AC339CB6-50B7-4801-AA10-A82256F8BE26}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {AC339CB6-50B7-4801-AA10-A82256F8BE26}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {AC339CB6-50B7-4801-AA10-A82256F8BE26}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {AC339CB6-50B7-4801-AA10-A82256F8BE26}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {6BB2A03D-BED2-4227-8900-AA41833B1952} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /PescaArtesanalOO/PescaArtesanalOO/Pesca.cs: -------------------------------------------------------------------------------- 1 | namespace PescaArtesanalOO 2 | { 3 | internal class Pesca 4 | { 5 | //Atributos 6 | private string especie, metodo; 7 | private float cantidad; 8 | 9 | //Constructor 10 | public Pesca() 11 | { 12 | especie = ""; 13 | metodo = ""; 14 | cantidad = 0; 15 | } 16 | 17 | //Propiedades 18 | public string Especie 19 | { 20 | get { return especie; } 21 | set { especie = value; } 22 | } 23 | 24 | public string Metodo 25 | { 26 | get { return metodo; } 27 | set { metodo = value; } 28 | } 29 | 30 | public float Cantidad 31 | { 32 | get { return cantidad; } 33 | set { cantidad = value; } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /PescaArtesanalOO/PescaArtesanalOO/PescaArtesanalOO.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ProbarAnagramas/ProbarAnagramas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.8.34330.188 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProbarAnagramas", "ProbarAnagramas\ProbarAnagramas.csproj", "{A62B5F25-CE0C-45A3-8132-85F1B8DF7AD2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {A62B5F25-CE0C-45A3-8132-85F1B8DF7AD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {A62B5F25-CE0C-45A3-8132-85F1B8DF7AD2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {A62B5F25-CE0C-45A3-8132-85F1B8DF7AD2}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {A62B5F25-CE0C-45A3-8132-85F1B8DF7AD2}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {62F2ADD6-713B-4AD7-B859-ADC2CF52102D} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ProbarAnagramas/ProbarAnagramas/ProbarAnagramas.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ProduccionLana/ProduccionLana.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProduccionLana", "ProduccionLana\ProduccionLana.csproj", "{41523037-BB1F-4FBD-A910-331DF71D3CEF}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {41523037-BB1F-4FBD-A910-331DF71D3CEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {41523037-BB1F-4FBD-A910-331DF71D3CEF}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {41523037-BB1F-4FBD-A910-331DF71D3CEF}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {41523037-BB1F-4FBD-A910-331DF71D3CEF}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {1E3CBEDE-4A27-4469-9245-B5C2E01A4162} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ProduccionLana/ProduccionLana/Oveja.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | namespace ProduccionLana 4 | { 5 | internal class Oveja 6 | { 7 | //Atributos 8 | private int edad; 9 | private int peso; 10 | private int cantidadLana; 11 | private bool esApta; 12 | 13 | //Constructores 14 | public Oveja() 15 | { 16 | edad = 0; 17 | peso = 0; 18 | cantidadLana = 0; 19 | esApta = false; 20 | } 21 | 22 | //Propiedades 23 | public int Edad 24 | { 25 | get { return edad; } 26 | set { edad = value; } 27 | } 28 | public int Peso 29 | { 30 | get { return peso; } 31 | set { peso = value; } 32 | } 33 | public int CantidadLana 34 | { 35 | get { return cantidadLana; } 36 | set { cantidadLana = value; } 37 | } 38 | public bool EsApta 39 | { 40 | get { return esApta; } 41 | } 42 | 43 | //Metodos 44 | public void EvaluaAptitud() 45 | { 46 | //una edad entre los 18 y 54 meses, tengan un peso mínimo de 20 kg y una cantidad de lana mínimo de un 1 kg 47 | if (edad >= 18 && edad <= 54 && peso >= 20 && cantidadLana >= 1) 48 | esApta = true; 49 | else 50 | esApta = false; 51 | } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /ProduccionLana/ProduccionLana/ProduccionLana.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PromedioPonderadoNotas/PromedioPonderadoNotas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PromedioPonderadoNotas", "PromedioPonderadoNotas\PromedioPonderadoNotas.csproj", "{C98F0924-A1FC-484C-AA46-08B18E50231E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C98F0924-A1FC-484C-AA46-08B18E50231E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C98F0924-A1FC-484C-AA46-08B18E50231E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C98F0924-A1FC-484C-AA46-08B18E50231E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C98F0924-A1FC-484C-AA46-08B18E50231E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {FD553C5F-F24B-49D0-AD0D-B0D6D2C352DD} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /PromedioPonderadoNotas/PromedioPonderadoNotas/PromedioPonderadoNotas.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PuntuacionEquipos/PuntuacionEquipos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PuntuacionEquipos", "PuntuacionEquipos\PuntuacionEquipos.csproj", "{44FAE2AF-B2F8-45B4-B255-FABC9EA850D3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {44FAE2AF-B2F8-45B4-B255-FABC9EA850D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {44FAE2AF-B2F8-45B4-B255-FABC9EA850D3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {44FAE2AF-B2F8-45B4-B255-FABC9EA850D3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {44FAE2AF-B2F8-45B4-B255-FABC9EA850D3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {5897856C-90D7-4A2D-9B7A-CEA034E758AB} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /PuntuacionEquipos/PuntuacionEquipos/PuntuacionEquipos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PuntuacionEquiposOO/PuntuacionEquiposOO.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PuntuacionEquiposOO", "PuntuacionEquiposOO\PuntuacionEquiposOO.csproj", "{6A33A2A1-3104-4DF2-B81F-91E5C5C4A142}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {6A33A2A1-3104-4DF2-B81F-91E5C5C4A142}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {6A33A2A1-3104-4DF2-B81F-91E5C5C4A142}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {6A33A2A1-3104-4DF2-B81F-91E5C5C4A142}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {6A33A2A1-3104-4DF2-B81F-91E5C5C4A142}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {70EC4168-9DEE-44F1-9714-4C878083CFBA} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /PuntuacionEquiposOO/PuntuacionEquiposOO/Jugador.cs: -------------------------------------------------------------------------------- 1 | namespace PuntuacionEquiposOO 2 | { 3 | internal class Jugador 4 | { 5 | //Atributos 6 | private string nombre; 7 | private int puntaje; 8 | 9 | //Constructor 10 | public Jugador() 11 | { 12 | nombre = ""; 13 | puntaje = 0; 14 | } 15 | 16 | //Propiedades 17 | public string Nombre 18 | { 19 | get { return nombre; } 20 | set { nombre = value; } 21 | } 22 | 23 | public int Puntaje 24 | { 25 | get { return puntaje; } 26 | set { puntaje = value; } 27 | 28 | } 29 | 30 | //Metodos 31 | 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /PuntuacionEquiposOO/PuntuacionEquiposOO/PuntuacionEquiposOO.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /RegistroSimCards/RegistroSimCards.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RegistroSimCards", "RegistroSimCards\RegistroSimCards.csproj", "{3329D9DF-6026-4A8F-989F-ABE126C68436}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3329D9DF-6026-4A8F-989F-ABE126C68436}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3329D9DF-6026-4A8F-989F-ABE126C68436}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3329D9DF-6026-4A8F-989F-ABE126C68436}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3329D9DF-6026-4A8F-989F-ABE126C68436}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {DDA34F36-E1E8-41D3-A9E1-D8A540E9A5F7} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /RegistroSimCards/RegistroSimCards/RegistroSimCards.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /RegistroSimCards/RegistroSimCards/SimCard.cs: -------------------------------------------------------------------------------- 1 | namespace RegistroSimCards 2 | { 3 | class SimCard 4 | { 5 | 6 | //Propiedades 7 | public string Operador { get; set; } 8 | public string TipoServicio { get; set; } 9 | 10 | public SimCard() 11 | { 12 | Operador = ""; 13 | TipoServicio = ""; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ServiciosPublicos/ServiciosPublicos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiciosPublicos", "ServiciosPublicos\ServiciosPublicos.csproj", "{3CB7F9C8-D179-4775-B88C-CDC80888AD02}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3CB7F9C8-D179-4775-B88C-CDC80888AD02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3CB7F9C8-D179-4775-B88C-CDC80888AD02}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3CB7F9C8-D179-4775-B88C-CDC80888AD02}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3CB7F9C8-D179-4775-B88C-CDC80888AD02}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {7D7DF425-ED78-40FD-AD80-754D1726FB74} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ServiciosPublicos/ServiciosPublicos/Servicio.cs: -------------------------------------------------------------------------------- 1 | namespace ServiciosPublicos 2 | { 3 | class Servicio 4 | { 5 | //Propiedades 6 | public string Nombre { get; set; } 7 | public float Consumo { get; set; } 8 | 9 | //Constructor de la clase 10 | public Servicio() 11 | { 12 | Nombre = ""; 13 | Consumo = 0; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ServiciosPublicos/ServiciosPublicos/ServiciosPublicos.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SimRadio/SimRadio.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimRadio", "SimRadio\SimRadio.csproj", "{A7DE2B54-7A5E-4DCA-8CFB-C69EBFD338B5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {A7DE2B54-7A5E-4DCA-8CFB-C69EBFD338B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {A7DE2B54-7A5E-4DCA-8CFB-C69EBFD338B5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {A7DE2B54-7A5E-4DCA-8CFB-C69EBFD338B5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {A7DE2B54-7A5E-4DCA-8CFB-C69EBFD338B5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {F6E60CDF-ED38-4D2C-9F20-C79B5D246C2F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /SimRadio/SimRadio/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrodas/Csharp_funprog/229bc8acab8a7502eeae72c288fba39d64620e74/SimRadio/SimRadio/Form1.cs -------------------------------------------------------------------------------- /SimRadio/SimRadio/Program.cs: -------------------------------------------------------------------------------- 1 | namespace SimRadio 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | [STAThread] 9 | static void Main() 10 | { 11 | // To customize application configuration such as set high DPI settings or default font, 12 | // see https://aka.ms/applicationconfiguration. 13 | ApplicationConfiguration.Initialize(); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /SimRadio/SimRadio/SimRadio.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net7.0-windows 6 | enable 7 | true 8 | enable 9 | 10 | 11 | -------------------------------------------------------------------------------- /SumaImparesHastaLimite/SumaImparesHastaLimite.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SumaImparesHastaLimite", "SumaImparesHastaLimite\SumaImparesHastaLimite.csproj", "{9AAB986A-9BE3-42DA-97BD-B61C6C4178E8}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {9AAB986A-9BE3-42DA-97BD-B61C6C4178E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {9AAB986A-9BE3-42DA-97BD-B61C6C4178E8}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {9AAB986A-9BE3-42DA-97BD-B61C6C4178E8}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {9AAB986A-9BE3-42DA-97BD-B61C6C4178E8}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {2C106056-E677-4BA3-B9F0-CFB2D143C26F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /SumaImparesHastaLimite/SumaImparesHastaLimite/Program.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Programa: SumaImparesHastaLimite 3 | Contacto: Juan Dario Rodas - jdrodas@hotmail.com 4 | 5 | Propósito: 6 | ---------- 7 | - Hallar la suma de los números impares hasta un límite usando una función 8 | - Implementar el control de ingreso de datos con la función TryParse() 9 | 10 | */ 11 | 12 | namespace SumaImparesHastaLimite 13 | { 14 | class Program 15 | { 16 | static void Main() 17 | { 18 | Console.WriteLine("Programa para sumar los números impares hasta un límite\n"); 19 | Console.Write("Ingresa el límite para generar los números impares: "); 20 | 21 | bool datoCorrecto = false; 22 | int limite = 0, suma; 23 | 24 | while (!datoCorrecto) 25 | { 26 | Console.Write("\nIngresa el número límite: "); 27 | datoCorrecto = int.TryParse(Console.ReadLine(), out limite); 28 | 29 | if (datoCorrecto == false) 30 | { 31 | Console.WriteLine("Ingresaste un dato no numérico. Intenta nuevamente!\n"); 32 | } 33 | } 34 | 35 | suma = CalculaSumaImpares(limite); 36 | 37 | Console.WriteLine("La suma de los impares hasta el número {0} es {1}", limite, suma); 38 | } 39 | 40 | static int CalculaSumaImpares(int datoLimite) 41 | { 42 | int resultado = 0; 43 | 44 | for (int i = 1; i <= datoLimite; i += 2) 45 | resultado += i; 46 | 47 | return resultado; 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /SumaImparesHastaLimite/SumaImparesHastaLimite/SumaImparesHastaLimite.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SumaMultiplosDe3y5/SumaMultiplosDe3y5.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SumaMultiplosDe3y5", "SumaMultiplosDe3y5\SumaMultiplosDe3y5.csproj", "{46FCC4CE-0FF2-467C-940D-D2CC52E6DCB5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {46FCC4CE-0FF2-467C-940D-D2CC52E6DCB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {46FCC4CE-0FF2-467C-940D-D2CC52E6DCB5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {46FCC4CE-0FF2-467C-940D-D2CC52E6DCB5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {46FCC4CE-0FF2-467C-940D-D2CC52E6DCB5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {AB0479AB-45A0-47DD-A6B2-511B64079DF8} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /SumaMultiplosDe3y5/SumaMultiplosDe3y5/SumaMultiplosDe3y5.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TablaMultiplicar/TablaMultiplicar.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TablaMultiplicar", "TablaMultiplicar\TablaMultiplicar.csproj", "{A492D5EB-0C5A-44FF-98E2-BBA189E2BD37}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {A492D5EB-0C5A-44FF-98E2-BBA189E2BD37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {A492D5EB-0C5A-44FF-98E2-BBA189E2BD37}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {A492D5EB-0C5A-44FF-98E2-BBA189E2BD37}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {A492D5EB-0C5A-44FF-98E2-BBA189E2BD37}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {214C345D-9F5C-4F75-AD75-3649B0861F07} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TablaMultiplicar/TablaMultiplicar/TablaMultiplicar.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TiendaGalletas/TiendaGalletas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TiendaGalletas", "TiendaGalletas\TiendaGalletas.csproj", "{F88A52AF-BEE4-4F4D-9EF2-79CFE32E06A3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F88A52AF-BEE4-4F4D-9EF2-79CFE32E06A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F88A52AF-BEE4-4F4D-9EF2-79CFE32E06A3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F88A52AF-BEE4-4F4D-9EF2-79CFE32E06A3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F88A52AF-BEE4-4F4D-9EF2-79CFE32E06A3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {67AD93FA-30EB-446E-A9D9-BE7597948ABF} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TiendaGalletas/TiendaGalletas/Galleta.cs: -------------------------------------------------------------------------------- 1 | namespace TiendaGalletas 2 | { 3 | class Galleta 4 | { 5 | //atributos 6 | private string sabor, topping, relleno; 7 | 8 | //Constructor de la clase 9 | public Galleta() 10 | { 11 | sabor = "sin sabor"; 12 | topping = "sin topping"; 13 | relleno = "sin relleno"; 14 | } 15 | 16 | //Métodos 17 | public string Sabor 18 | { 19 | get { return sabor; } 20 | set { sabor = value; } 21 | } 22 | 23 | public string Topping 24 | { 25 | set { topping = value; } 26 | get { return topping; } 27 | } 28 | 29 | public string Relleno 30 | { 31 | get { return relleno; } 32 | set { relleno = value; } 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /TiendaGalletas/TiendaGalletas/TiendaGalletas.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net7.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TiendaGomitas/TiendaGomitas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TiendaGomitas", "TiendaGomitas\TiendaGomitas.csproj", "{B0F7E104-00FA-43EC-9CD8-624CE1A83503}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B0F7E104-00FA-43EC-9CD8-624CE1A83503}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B0F7E104-00FA-43EC-9CD8-624CE1A83503}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B0F7E104-00FA-43EC-9CD8-624CE1A83503}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B0F7E104-00FA-43EC-9CD8-624CE1A83503}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {E799490F-9804-4692-8040-A45536D2F0DB} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TiendaGomitas/TiendaGomitas/Gomita.cs: -------------------------------------------------------------------------------- 1 | namespace TiendaGomitas 2 | { 3 | class Gomita 4 | { 5 | //atributos de la clase 6 | private string color, sabor, forma; 7 | 8 | //el constructor de la clase 9 | public Gomita() 10 | { 11 | color = ""; 12 | sabor = ""; 13 | forma = ""; 14 | } 15 | 16 | //Propiedades de acceso a los atributos 17 | 18 | /// 19 | /// Obtiene o establece la forma de la gomita 20 | /// 21 | public string Forma 22 | { 23 | get { return forma; } 24 | set { forma = value; } 25 | } 26 | 27 | /// 28 | /// Obtiene o establece el color de la gomita 29 | /// 30 | public string Color 31 | { 32 | set { color = value; } 33 | get { return color; } 34 | } 35 | 36 | /// 37 | /// Obtiene o establece el sabor de la gomita 38 | /// 39 | public string Sabor 40 | { 41 | get { return sabor; } 42 | set { sabor = value; } 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /TiendaGomitas/TiendaGomitas/TiendaGomitas.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VacunacionEscolar/VacunacionEscolar.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.33414.496 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VacunacionEscolar", "VacunacionEscolar\VacunacionEscolar.csproj", "{3B30F641-7EAF-47E9-B1B0-A976BE2A7F53}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3B30F641-7EAF-47E9-B1B0-A976BE2A7F53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3B30F641-7EAF-47E9-B1B0-A976BE2A7F53}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3B30F641-7EAF-47E9-B1B0-A976BE2A7F53}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3B30F641-7EAF-47E9-B1B0-A976BE2A7F53}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {DD922CF9-71A8-4F1C-9D5B-203B0F127165} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /VacunacionEscolar/VacunacionEscolar/VacunacionEscolar.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ValidaBisiesto/ValidaBisiesto.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ValidaBisiesto", "ValidaBisiesto\ValidaBisiesto.csproj", "{F9F356E2-6B69-4678-8BA0-1070F749836B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F9F356E2-6B69-4678-8BA0-1070F749836B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F9F356E2-6B69-4678-8BA0-1070F749836B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F9F356E2-6B69-4678-8BA0-1070F749836B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F9F356E2-6B69-4678-8BA0-1070F749836B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {03E7AF3A-115B-41C6-A135-D79154460784} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ValidaBisiesto/ValidaBisiesto/ValidaBisiesto.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ValidaNumeroPrimo/ValidaNumeroPrimo.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ValidaNumeroPrimo", "ValidaNumeroPrimo\ValidaNumeroPrimo.csproj", "{F9F95334-F9C5-4D4A-AACE-0FAEAF084DD1}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F9F95334-F9C5-4D4A-AACE-0FAEAF084DD1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F9F95334-F9C5-4D4A-AACE-0FAEAF084DD1}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F9F95334-F9C5-4D4A-AACE-0FAEAF084DD1}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F9F95334-F9C5-4D4A-AACE-0FAEAF084DD1}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {5D67B4EF-B45C-4724-A77A-92718336410F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ValidaNumeroPrimo/ValidaNumeroPrimo/ValidaNumeroPrimo.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ValidaRango/ValidaRango.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31919.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ValidaRango", "ValidaRango\ValidaRango.csproj", "{042703B4-9B41-4F39-B135-BF9F9B1DAA31}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {042703B4-9B41-4F39-B135-BF9F9B1DAA31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {042703B4-9B41-4F39-B135-BF9F9B1DAA31}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {042703B4-9B41-4F39-B135-BF9F9B1DAA31}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {042703B4-9B41-4F39-B135-BF9F9B1DAA31}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {47445486-545D-4AAB-90FA-98736F1E0726} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ValidaRango/ValidaRango/ValidaRango.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VentaEmpanadas/VentaEmpanadas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VentaEmpanadas", "VentaEmpanadas\VentaEmpanadas.csproj", "{4593CB70-1517-46F2-A6F5-220D8586355C}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {4593CB70-1517-46F2-A6F5-220D8586355C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {4593CB70-1517-46F2-A6F5-220D8586355C}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {4593CB70-1517-46F2-A6F5-220D8586355C}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {4593CB70-1517-46F2-A6F5-220D8586355C}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {94CB1374-E216-4B0D-A312-5C7061D730A6} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /VentaEmpanadas/VentaEmpanadas/Empanada.cs: -------------------------------------------------------------------------------- 1 | namespace VentaEmpanadas 2 | { 3 | class Empanada 4 | { 5 | //Zona de Propiedades para la clase 6 | public string Relleno { get; set; } 7 | public string Masa { get; set; } 8 | public string Color { get; set; } 9 | 10 | //Constructor de la clase 11 | public Empanada() 12 | { 13 | Relleno = ""; 14 | Masa = ""; 15 | Color = ""; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /VentaEmpanadas/VentaEmpanadas/VentaEmpanadas.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Wordle_Simplificado/Wordle_Simplificado.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.4.33103.184 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wordle_Simplificado", "Wordle_Simplificado\Wordle_Simplificado.csproj", "{77E1FC8D-BE3C-4991-B3A3-1ADC46E4C62B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {77E1FC8D-BE3C-4991-B3A3-1ADC46E4C62B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {77E1FC8D-BE3C-4991-B3A3-1ADC46E4C62B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {77E1FC8D-BE3C-4991-B3A3-1ADC46E4C62B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {77E1FC8D-BE3C-4991-B3A3-1ADC46E4C62B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A61A204B-61F3-4277-8810-B25A06F7059A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Wordle_Simplificado/Wordle_Simplificado/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrodas/Csharp_funprog/229bc8acab8a7502eeae72c288fba39d64620e74/Wordle_Simplificado/Wordle_Simplificado/Form1.cs -------------------------------------------------------------------------------- /Wordle_Simplificado/Wordle_Simplificado/Program.cs: -------------------------------------------------------------------------------- 1 | namespace Wordle_Simplificado 2 | { 3 | internal static class Program 4 | { 5 | /// 6 | /// The main entry point for the application. 7 | /// 8 | [STAThread] 9 | static void Main() 10 | { 11 | // To customize application configuration such as set high DPI settings or default font, 12 | // see https://aka.ms/applicationconfiguration. 13 | ApplicationConfiguration.Initialize(); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /Wordle_Simplificado/Wordle_Simplificado/Wordle_Simplificado.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net7.0-windows 6 | enable 7 | true 8 | enable 9 | 10 | 11 | -------------------------------------------------------------------------------- /ZooPOO/ZooPOO.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.33516.290 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZooPOO", "ZooPOO\ZooPOO.csproj", "{4477B958-16A3-4C9D-B01A-BFBA04CC6534}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {4477B958-16A3-4C9D-B01A-BFBA04CC6534}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {4477B958-16A3-4C9D-B01A-BFBA04CC6534}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {4477B958-16A3-4C9D-B01A-BFBA04CC6534}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {4477B958-16A3-4C9D-B01A-BFBA04CC6534}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {78E5D318-A088-44ED-BAFD-A5FA7A72E5EF} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ZooPOO/ZooPOO/Animal.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace ZooPOO 3 | { 4 | public class Animal 5 | { 6 | // Atributos 7 | private string tipoMedio; 8 | private string tipoAlimento; 9 | private int cantidadAlimento; 10 | 11 | //Constructor 12 | public Animal() 13 | { 14 | tipoAlimento = string.Empty; 15 | tipoMedio = string.Empty; 16 | cantidadAlimento = 0; 17 | } 18 | 19 | //Las propiedades 20 | public string TipoMedio 21 | { 22 | get { return tipoMedio; } 23 | set { tipoMedio = value; } 24 | } 25 | 26 | public string TipoAlimento 27 | { 28 | get { return tipoAlimento; } 29 | set { tipoAlimento = value; } 30 | } 31 | 32 | public int CantidadAlimento 33 | { 34 | get { return cantidadAlimento; } 35 | set { cantidadAlimento = value; } 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /ZooPOO/ZooPOO/ZooPOO.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ex01_BuenLugar/ex01_BuenLugar.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.421 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_BuenLugar", "ex01_BuenLugar\ex01_BuenLugar.csproj", "{944672F0-C82D-4AFB-B9D2-F094E0D2C697}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {944672F0-C82D-4AFB-B9D2-F094E0D2C697}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {944672F0-C82D-4AFB-B9D2-F094E0D2C697}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {944672F0-C82D-4AFB-B9D2-F094E0D2C697}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {944672F0-C82D-4AFB-B9D2-F094E0D2C697}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {09DE0C67-D55C-46AC-B3AC-3D4D4879D663} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_BuenLugar/ex01_BuenLugar/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_BuenLugar/ex01_BuenLugar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // La información general de un ensamblado se controla mediante el siguiente 6 | // conjunto de atributos. Cambie estos valores de atributo para modificar la información 7 | // asociada con un ensamblado. 8 | [assembly: AssemblyTitle("ex01_BuenLugar")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ex01_BuenLugar")] 13 | [assembly: AssemblyCopyright("Copyright © 2019")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Si establece ComVisible en false, los tipos de este ensamblado no estarán visibles 18 | // para los componentes COM. Si es necesario obtener acceso a un tipo en este ensamblado desde 19 | // COM, establezca el atributo ComVisible en true en este tipo. 20 | [assembly: ComVisible(false)] 21 | 22 | // El siguiente GUID sirve como id. de typelib si este proyecto se expone a COM. 23 | [assembly: Guid("944672f0-c82d-4afb-b9d2-f094e0d2c697")] 24 | 25 | // La información de versión de un ensamblado consta de los cuatro valores siguientes: 26 | // 27 | // Versión principal 28 | // Versión secundaria 29 | // Número de compilación 30 | // Revisión 31 | // 32 | // Puede especificar todos los valores o utilizar los números de compilación y de revisión predeterminados 33 | // mediante el carácter '*', como se muestra a continuación: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ex01_ConcursoOrquideas/ex01_ConcursoOrquideas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32804.467 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_ConcursoOrquideas", "ex01_ConcursoOrquideas\ex01_ConcursoOrquideas.csproj", "{7B32B464-5D86-47AB-87A3-7946BB5EE2DC}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {7B32B464-5D86-47AB-87A3-7946BB5EE2DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {7B32B464-5D86-47AB-87A3-7946BB5EE2DC}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {7B32B464-5D86-47AB-87A3-7946BB5EE2DC}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {7B32B464-5D86-47AB-87A3-7946BB5EE2DC}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {524D4795-2737-4862-A96E-07A94EB19F14} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_ConcursoOrquideas/ex01_ConcursoOrquideas/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_DesfileSilleteros/ex01_DesfileSilleteros.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32811.315 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_DesfileSilleteros", "ex01_DesfileSilleteros\ex01_DesfileSilleteros.csproj", "{69EB42AB-D443-4FFC-AC46-0821B25D22E3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {69EB42AB-D443-4FFC-AC46-0821B25D22E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {69EB42AB-D443-4FFC-AC46-0821B25D22E3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {69EB42AB-D443-4FFC-AC46-0821B25D22E3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {69EB42AB-D443-4FFC-AC46-0821B25D22E3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {1367422B-F2AA-4F2E-8328-824400DD65D9} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_DesfileSilleteros/ex01_DesfileSilleteros/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_Divergente/ex01_Divergente.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_Divergente", "ex01_Divergente\ex01_Divergente.csproj", "{3A1A7512-6841-47B1-97F2-B7BA3368367A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3A1A7512-6841-47B1-97F2-B7BA3368367A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3A1A7512-6841-47B1-97F2-B7BA3368367A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3A1A7512-6841-47B1-97F2-B7BA3368367A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3A1A7512-6841-47B1-97F2-B7BA3368367A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D531817F-D4D0-44C1-90D2-6476838B32B0} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_Divergente/ex01_Divergente/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_Divergente/ex01_Divergente/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // La información general de un ensamblado se controla mediante el siguiente 6 | // conjunto de atributos. Cambie estos valores de atributo para modificar la información 7 | // asociada con un ensamblado. 8 | [assembly: AssemblyTitle("ex01_Divergente")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ex01_Divergente")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Si establece ComVisible en false, los tipos de este ensamblado no estarán visibles 18 | // para los componentes COM. Si es necesario obtener acceso a un tipo en este ensamblado desde 19 | // COM, establezca el atributo ComVisible en true en este tipo. 20 | [assembly: ComVisible(false)] 21 | 22 | // El siguiente GUID sirve como id. de typelib si este proyecto se expone a COM. 23 | [assembly: Guid("3a1a7512-6841-47b1-97f2-b7ba3368367a")] 24 | 25 | // La información de versión de un ensamblado consta de los cuatro valores siguientes: 26 | // 27 | // Versión principal 28 | // Versión secundaria 29 | // Número de compilación 30 | // Revisión 31 | // 32 | // Puede especificar todos los valores o utilizar los números de compilación y de revisión predeterminados 33 | // mediante el carácter '*', como se muestra a continuación: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ex01_DungeonCraft/ex01_DungeonCraft.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_DungeonCraft", "ex01_DungeonCraft\ex01_DungeonCraft.csproj", "{8EAA33E6-61AF-468B-BCB6-870D72A4727D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8EAA33E6-61AF-468B-BCB6-870D72A4727D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8EAA33E6-61AF-468B-BCB6-870D72A4727D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8EAA33E6-61AF-468B-BCB6-870D72A4727D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8EAA33E6-61AF-468B-BCB6-870D72A4727D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {BA20C0BA-A8D7-41FF-AAA3-F3AFE11BA77C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_DungeonCraft/ex01_DungeonCraft/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_FinalSpaceRescate/ex01_FinalSpaceRescate.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_FinalSpaceRescate", "ex01_FinalSpaceRescate\ex01_FinalSpaceRescate.csproj", "{14910C52-8086-4DDC-9D6D-3DFBE89B676E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {14910C52-8086-4DDC-9D6D-3DFBE89B676E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {14910C52-8086-4DDC-9D6D-3DFBE89B676E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {14910C52-8086-4DDC-9D6D-3DFBE89B676E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {14910C52-8086-4DDC-9D6D-3DFBE89B676E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {88EF7A44-D76F-4527-8C9D-1B84C8C1A4EB} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_FinalSpaceRescate/ex01_FinalSpaceRescate/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_MaltratoMorty/ex01_MaltratoMorty.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_MaltratoMorty", "ex01_MaltratoMorty\ex01_MaltratoMorty.csproj", "{11C979DA-FE99-4132-80AE-268A4BA2EFB5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {11C979DA-FE99-4132-80AE-268A4BA2EFB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {11C979DA-FE99-4132-80AE-268A4BA2EFB5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {11C979DA-FE99-4132-80AE-268A4BA2EFB5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {11C979DA-FE99-4132-80AE-268A4BA2EFB5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {51056D6B-AF90-41C0-8C6F-34E746334B5D} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_MaltratoMorty/ex01_MaltratoMorty/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_ProduccionLechera/ex01_ProduccionLechera.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.32126.317 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_ProduccionLechera", "ex01_ProduccionLechera\ex01_ProduccionLechera.csproj", "{21968C18-9C59-447B-A1C2-F65E3B1F5DDD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {21968C18-9C59-447B-A1C2-F65E3B1F5DDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {21968C18-9C59-447B-A1C2-F65E3B1F5DDD}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {21968C18-9C59-447B-A1C2-F65E3B1F5DDD}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {21968C18-9C59-447B-A1C2-F65E3B1F5DDD}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {00E76289-B0D2-46AB-A105-D660C294AFE9} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_ProduccionLechera/ex01_ProduccionLechera/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_SombreroSeleccionador/ex01_SombreroSeleccionador.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_SombreroSeleccionador", "ex01_SombreroSeleccionador\ex01_SombreroSeleccionador.csproj", "{D5C2F497-EF15-46F1-B5A1-073D5CA42DEE}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {D5C2F497-EF15-46F1-B5A1-073D5CA42DEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {D5C2F497-EF15-46F1-B5A1-073D5CA42DEE}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {D5C2F497-EF15-46F1-B5A1-073D5CA42DEE}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {D5C2F497-EF15-46F1-B5A1-073D5CA42DEE}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {70FD827A-D97A-4B11-B230-EC9DD037BDCB} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_SombreroSeleccionador/ex01_SombreroSeleccionador/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_VacunacionEscolar/ex01_VacunacionEscolar.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.32126.317 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_VacunacionEscolar", "ex01_VacunacionEscolar\ex01_VacunacionEscolar.csproj", "{B359704F-E74D-4AEB-9E6D-261F2A8CC779}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B359704F-E74D-4AEB-9E6D-261F2A8CC779}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B359704F-E74D-4AEB-9E6D-261F2A8CC779}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B359704F-E74D-4AEB-9E6D-261F2A8CC779}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B359704F-E74D-4AEB-9E6D-261F2A8CC779}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {1702E773-CD0D-49C0-ABE5-75B8220DDCEE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_VacunacionEscolar/ex01_VacunacionEscolar/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex01_secuenciaADN/ex01_secuenciaADN.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex01_secuenciaADN", "ex01_secuenciaADN\ex01_secuenciaADN.csproj", "{07CA6DAB-EAF0-4B50-B36D-8F86FF4CEFA4}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {07CA6DAB-EAF0-4B50-B36D-8F86FF4CEFA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {07CA6DAB-EAF0-4B50-B36D-8F86FF4CEFA4}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {07CA6DAB-EAF0-4B50-B36D-8F86FF4CEFA4}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {07CA6DAB-EAF0-4B50-B36D-8F86FF4CEFA4}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {0BA8DAB8-955C-4CC6-BE12-38CE3791C4C2} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex01_secuenciaADN/ex01_secuenciaADN/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_AterrizajeOptimo/ex02_AterrizajeOptimo.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_AterrizajeOptimo", "ex02_AterrizajeOptimo\ex02_AterrizajeOptimo.csproj", "{F28939D3-A95C-433D-BC66-CB458F842991}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F28939D3-A95C-433D-BC66-CB458F842991}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F28939D3-A95C-433D-BC66-CB458F842991}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F28939D3-A95C-433D-BC66-CB458F842991}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F28939D3-A95C-433D-BC66-CB458F842991}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {79F72541-0505-4A37-BAB7-95E279BAC647} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_AterrizajeOptimo/ex02_AterrizajeOptimo/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_CerrosTutelares/ex02_CerrosTutelares.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31702.278 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_CerrosTutelares", "ex02_CerrosTutelares\ex02_CerrosTutelares.csproj", "{B16D1587-A93B-47EF-942C-96C7BD90F1D0}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B16D1587-A93B-47EF-942C-96C7BD90F1D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B16D1587-A93B-47EF-942C-96C7BD90F1D0}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B16D1587-A93B-47EF-942C-96C7BD90F1D0}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B16D1587-A93B-47EF-942C-96C7BD90F1D0}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {9CFDB023-7C78-43E6-AD4E-C801D6F83C07} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_CerrosTutelares/ex02_CerrosTutelares/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_ColonizacionMarte/ex02_ColonizacionMarte.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_ColonizacionMarte", "ex02_ColonizacionMarte\ex02_ColonizacionMarte.csproj", "{7F275D52-4C5E-49DC-8FC9-D7A6A3E5A8B6}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {7F275D52-4C5E-49DC-8FC9-D7A6A3E5A8B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {7F275D52-4C5E-49DC-8FC9-D7A6A3E5A8B6}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {7F275D52-4C5E-49DC-8FC9-D7A6A3E5A8B6}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {7F275D52-4C5E-49DC-8FC9-D7A6A3E5A8B6}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {9AEF9FF3-3F15-44CA-B4A2-BD5633599C71} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_ColonizacionMarte/ex02_ColonizacionMarte/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_ContaminacionAire/ex02_ContaminacionAire.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.421 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_ContaminacionAire", "ex02_ContaminacionAire\ex02_ContaminacionAire.csproj", "{78DAE8EC-0A79-47C6-A406-48C2CC6F5DD9}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {78DAE8EC-0A79-47C6-A406-48C2CC6F5DD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {78DAE8EC-0A79-47C6-A406-48C2CC6F5DD9}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {78DAE8EC-0A79-47C6-A406-48C2CC6F5DD9}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {78DAE8EC-0A79-47C6-A406-48C2CC6F5DD9}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {BC963722-10A6-4C75-8B1E-14FB0281E6AF} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_ContaminacionAire/ex02_ContaminacionAire/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_ConversionRGBaCMYK/ex02_ConversionRGBaCMYK.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.1.32228.430 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_ConversionRGBaCMYK", "ex02_ConversionRGBaCMYK\ex02_ConversionRGBaCMYK.csproj", "{CDFFC01C-0372-45FD-8336-C6BB5E9EC6A5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {CDFFC01C-0372-45FD-8336-C6BB5E9EC6A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {CDFFC01C-0372-45FD-8336-C6BB5E9EC6A5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {CDFFC01C-0372-45FD-8336-C6BB5E9EC6A5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {CDFFC01C-0372-45FD-8336-C6BB5E9EC6A5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D9B831C8-8FEF-41D4-856E-872B2CDE5716} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_ConversionRGBaCMYK/ex02_ConversionRGBaCMYK/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_CoordenadasGeograficas/ex02_CoordenadasGeograficas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.32126.317 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_CoordenadasGeograficas", "ex02_CoordenadasGeograficas\ex02_CoordenadasGeograficas.csproj", "{5AD95F95-3D7B-40FF-896E-A3223F2C5929}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {5AD95F95-3D7B-40FF-896E-A3223F2C5929}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {5AD95F95-3D7B-40FF-896E-A3223F2C5929}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {5AD95F95-3D7B-40FF-896E-A3223F2C5929}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {5AD95F95-3D7B-40FF-896E-A3223F2C5929}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {9CE46ED3-55AC-4EFA-80BD-2ABE67DA6CA7} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_CoordenadasGeograficas/ex02_CoordenadasGeograficas/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_EleccionRepresentantes/ex02_EleccionRepresentantes.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.421 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_EleccionRepresentantes", "ex02_EleccionRepresentantes\ex02_EleccionRepresentantes.csproj", "{6449C0ED-59AA-4CB3-8840-E6C05E52199D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {6449C0ED-59AA-4CB3-8840-E6C05E52199D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {6449C0ED-59AA-4CB3-8840-E6C05E52199D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {6449C0ED-59AA-4CB3-8840-E6C05E52199D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {6449C0ED-59AA-4CB3-8840-E6C05E52199D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D6100155-5E27-4215-8663-F5F6E746CF88} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_EleccionRepresentantes/ex02_EleccionRepresentantes/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_LiberandoWill/ex02_LiberandoWill.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_LiberandoWill", "ex02_LiberandoWill\ex02_LiberandoWill.csproj", "{E70A5D74-211A-42A6-B889-E4AF27555D67}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E70A5D74-211A-42A6-B889-E4AF27555D67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {E70A5D74-211A-42A6-B889-E4AF27555D67}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {E70A5D74-211A-42A6-B889-E4AF27555D67}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {E70A5D74-211A-42A6-B889-E4AF27555D67}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {EAC259CA-C50E-4B1F-8A6A-FB41D033EED7} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_LiberandoWill/ex02_LiberandoWill/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_MatricesPescaArtesanal/ex02_MatricesPescaArtesanal.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32825.248 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_MatricesPescaArtesanal", "ex02_MatricesPescaArtesanal\ex02_MatricesPescaArtesanal.csproj", "{39045159-E68F-49E3-A90E-FA5C642B1FA7}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {39045159-E68F-49E3-A90E-FA5C642B1FA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {39045159-E68F-49E3-A90E-FA5C642B1FA7}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {39045159-E68F-49E3-A90E-FA5C642B1FA7}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {39045159-E68F-49E3-A90E-FA5C642B1FA7}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {269DE0B1-1276-4D5F-AC37-6559EB75DB6E} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_MatricesPescaArtesanal/ex02_MatricesPescaArtesanal/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_PescaRecreativa/ex02_PescaRecreativa.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32825.248 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_PescaRecreativa", "ex02_PescaRecreativa\ex02_PescaRecreativa.csproj", "{A1BD6C85-5492-4556-B825-8F899B200E6B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {A1BD6C85-5492-4556-B825-8F899B200E6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {A1BD6C85-5492-4556-B825-8F899B200E6B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {A1BD6C85-5492-4556-B825-8F899B200E6B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {A1BD6C85-5492-4556-B825-8F899B200E6B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {2D894B1C-A915-4423-A6C6-D90BECFF1C19} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_PescaRecreativa/ex02_PescaRecreativa/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex02_ReforestacionCorregimientos/ex02_ReforestacionCorregimientos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32825.248 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex02_ReforestacionCorregimientos", "ex02_ReforestacionCorregimientos\ex02_ReforestacionCorregimientos.csproj", "{26F678E8-1C33-4DFD-9FD9-77EDA557ACEC}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {26F678E8-1C33-4DFD-9FD9-77EDA557ACEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {26F678E8-1C33-4DFD-9FD9-77EDA557ACEC}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {26F678E8-1C33-4DFD-9FD9-77EDA557ACEC}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {26F678E8-1C33-4DFD-9FD9-77EDA557ACEC}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {AE68281C-0AD8-4DE4-96F8-C51BD63F3CEB} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex02_ReforestacionCorregimientos/ex02_ReforestacionCorregimientos/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex03_BurgerMaster/ex03_BurgerMaster.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.421 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex03_BurgerMaster", "ex03_BurgerMaster\ex03_BurgerMaster.csproj", "{F5A60E4C-87A2-4789-9705-7D0C80504BEA}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F5A60E4C-87A2-4789-9705-7D0C80504BEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F5A60E4C-87A2-4789-9705-7D0C80504BEA}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F5A60E4C-87A2-4789-9705-7D0C80504BEA}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F5A60E4C-87A2-4789-9705-7D0C80504BEA}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D9A486D5-9F0E-48A0-A710-82FD5D949CD1} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex03_BurgerMaster/ex03_BurgerMaster/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex03_BurgerMaster/ex03_BurgerMaster/Pedido.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ex03_BurgerMaster 4 | { 5 | class Pedido 6 | { 7 | private int codigoLocal; 8 | private string tipoHamburguesa, tipoBebida, tipoPostre; 9 | 10 | 11 | public Pedido() 12 | { 13 | codigoLocal = 0; 14 | tipoHamburguesa = ""; 15 | tipoBebida = ""; 16 | tipoPostre = ""; 17 | } 18 | 19 | public int CodigoLocal 20 | { 21 | get { return codigoLocal; } 22 | set { codigoLocal = value; } 23 | } 24 | 25 | public string TipoHamburguesa 26 | { 27 | get { return tipoHamburguesa; } 28 | set { tipoHamburguesa = value; } 29 | } 30 | 31 | public string TipoBebida 32 | { 33 | get { return tipoBebida; } 34 | set { tipoBebida = value; } 35 | } 36 | 37 | public string TipoPostre 38 | { 39 | get { return tipoPostre; } 40 | set { tipoPostre = value; } 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /ex03_CampeonDeBarrio/ex03_CampeonDeBarrio.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.1.32328.378 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex03_CampeonDeBarrio", "ex03_CampeonDeBarrio\ex03_CampeonDeBarrio.csproj", "{FD100326-23A8-46BE-9C7D-CE02D52AC908}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {FD100326-23A8-46BE-9C7D-CE02D52AC908}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {FD100326-23A8-46BE-9C7D-CE02D52AC908}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {FD100326-23A8-46BE-9C7D-CE02D52AC908}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {FD100326-23A8-46BE-9C7D-CE02D52AC908}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A1B6B8DD-5B1B-49C7-9091-83B8674390BF} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex03_CampeonDeBarrio/ex03_CampeonDeBarrio/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex03_MedicionContaminacion/ex03_MedicionContaminacion.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex03_MedicionContaminacion", "ex03_MedicionContaminacion\ex03_MedicionContaminacion.csproj", "{8E66C2A9-9A52-4ABE-A9AD-BD451B4C8A74}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8E66C2A9-9A52-4ABE-A9AD-BD451B4C8A74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8E66C2A9-9A52-4ABE-A9AD-BD451B4C8A74}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8E66C2A9-9A52-4ABE-A9AD-BD451B4C8A74}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8E66C2A9-9A52-4ABE-A9AD-BD451B4C8A74}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A9895DF1-FD86-4F1B-BD65-726FD4BD9D6B} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex03_MedicionContaminacion/ex03_MedicionContaminacion/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex03_ServiciosPublicos/ex03_ServiciosPublicos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31702.278 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex03_ServiciosPublicos", "ex03_ServiciosPublicos\ex03_ServiciosPublicos.csproj", "{BC12F541-306A-420B-B441-E7813FFEC95D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {BC12F541-306A-420B-B441-E7813FFEC95D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {BC12F541-306A-420B-B441-E7813FFEC95D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {BC12F541-306A-420B-B441-E7813FFEC95D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {BC12F541-306A-420B-B441-E7813FFEC95D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {F2C4B872-5C3D-4C75-92BD-D39E4346A607} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex03_ServiciosPublicos/ex03_ServiciosPublicos/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex03_ServiciosPublicos/ex03_ServiciosPublicos/Servicio.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ex03_ServiciosPublicos 8 | { 9 | class Servicio 10 | { 11 | public string Nombre { get; set; } 12 | 13 | public int Consumo { get; set; } 14 | 15 | public Servicio() 16 | { 17 | Nombre = ""; 18 | Consumo = 0; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /ex03_SimulacroVacunacion/ex03_SimulacroVacunacion.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31129.286 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex03_SimulacroVacunacion", "ex03_SimulacroVacunacion\ex03_SimulacroVacunacion.csproj", "{3C1BB361-5552-4BBD-BFC7-28E968DE6AB6}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3C1BB361-5552-4BBD-BFC7-28E968DE6AB6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3C1BB361-5552-4BBD-BFC7-28E968DE6AB6}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3C1BB361-5552-4BBD-BFC7-28E968DE6AB6}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3C1BB361-5552-4BBD-BFC7-28E968DE6AB6}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {49AE5AE4-3D6E-48E0-B173-BF8D1F4DE56C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex03_SimulacroVacunacion/ex03_SimulacroVacunacion/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex03_SimulacroVacunacion/ex03_SimulacroVacunacion/Vacunado.cs: -------------------------------------------------------------------------------- 1 | namespace ex03_SimulacroVacunacion 2 | { 3 | class Vacunado 4 | { 5 | public int Edad { get; set; } 6 | public string CiudadResidencia { get; set; } 7 | public string Biologico { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ex03_VentasBarrio/ex03_VentasBarrio.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32922.545 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex03_VentasBarrio", "ex03_VentasBarrio\ex03_VentasBarrio.csproj", "{83094542-5A8D-4C8B-A4C4-CFA7986E8299}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {83094542-5A8D-4C8B-A4C4-CFA7986E8299}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {83094542-5A8D-4C8B-A4C4-CFA7986E8299}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {83094542-5A8D-4C8B-A4C4-CFA7986E8299}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {83094542-5A8D-4C8B-A4C4-CFA7986E8299}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {5C07D28C-459B-410E-9805-ED2ACDCD0713} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex03_VentasBarrio/ex03_VentasBarrio/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex03_VentasBarrio/ex03_VentasBarrio/Pedido.cs: -------------------------------------------------------------------------------- 1 | namespace ex03_VentasBarrio 2 | { 3 | public class Pedido 4 | { 5 | //Atributos 6 | private string barrio; 7 | private int cantidadGalletas; 8 | 9 | //Constructor 10 | public Pedido() 11 | { 12 | barrio = ""; 13 | cantidadGalletas = 0; 14 | } 15 | 16 | //Propiedades 17 | public string Barrio 18 | { 19 | get { return barrio; } 20 | set { barrio = value; } 21 | } 22 | 23 | public int CantidadGalletas 24 | { 25 | get { return cantidadGalletas; } 26 | set { cantidadGalletas = value; } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /ex03_ViajesMetroplus/ex03_ViajesMetroplus.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32922.545 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex03_ViajesMetroplus", "ex03_ViajesMetroplus\ex03_ViajesMetroplus.csproj", "{41FA1680-09AB-4186-8F18-33CA0EB03389}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {41FA1680-09AB-4186-8F18-33CA0EB03389}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {41FA1680-09AB-4186-8F18-33CA0EB03389}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {41FA1680-09AB-4186-8F18-33CA0EB03389}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {41FA1680-09AB-4186-8F18-33CA0EB03389}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {8EB2A5C0-CCA5-4056-87E3-7FA0BF69B8C4} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex03_ViajesMetroplus/ex03_ViajesMetroplus/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex03_ViajesMetroplus/ex03_ViajesMetroplus/Viaje.cs: -------------------------------------------------------------------------------- 1 | namespace ex03_ViajesMetroplus 2 | { 3 | public class Viaje 4 | { 5 | //Atributos 6 | private string ruta; 7 | private int cantidadPasajeros; 8 | 9 | //Constructor 10 | public Viaje() 11 | { 12 | ruta = ""; 13 | cantidadPasajeros = 0; 14 | } 15 | 16 | //Propiedades 17 | public string Ruta 18 | { 19 | get { return ruta; } 20 | set { ruta = value; } 21 | } 22 | 23 | public int CantidadPasajeros 24 | { 25 | get { return cantidadPasajeros; } 26 | set { cantidadPasajeros = value; } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /ex04_EncuentraParejasNumeros/ex04_EncuentraParejasNumeros.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex04_EncuentraParejasNumeros", "ex04_EncuentraParejasNumeros\ex04_EncuentraParejasNumeros.csproj", "{5AA4FF30-74CE-4030-96D9-C49922F25FB3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {5AA4FF30-74CE-4030-96D9-C49922F25FB3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {5AA4FF30-74CE-4030-96D9-C49922F25FB3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {5AA4FF30-74CE-4030-96D9-C49922F25FB3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {5AA4FF30-74CE-4030-96D9-C49922F25FB3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {BA7223CB-B203-403B-9DF5-D3275E0A714A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex04_EncuentraParejasNumeros/ex04_EncuentraParejasNumeros/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex04_EncuentraParejasNumeros/ex04_EncuentraParejasNumeros/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace ex04_EncuentraParejasNumeros 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Punto de entrada principal para la aplicación. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /ex04_EncuentraParejasNumeros/ex04_EncuentraParejasNumeros/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ex04_EncuentraParejasNumeros.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /ex04_EncuentraParejasNumeros/ex04_EncuentraParejasNumeros/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ex04_TiendaGomitas/ex04_TiendaGomitas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27428.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ex04_TiendaGomitas", "ex04_TiendaGomitas\ex04_TiendaGomitas.csproj", "{8838AD22-873C-46F3-9F63-8378454D76E1}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8838AD22-873C-46F3-9F63-8378454D76E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8838AD22-873C-46F3-9F63-8378454D76E1}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8838AD22-873C-46F3-9F63-8378454D76E1}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8838AD22-873C-46F3-9F63-8378454D76E1}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {2E193790-A946-438E-ABE3-4B33C817810C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /ex04_TiendaGomitas/ex04_TiendaGomitas/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ex04_TiendaGomitas/ex04_TiendaGomitas/Gomita.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ex04_TiendaGomitas 8 | { 9 | class Gomita 10 | { 11 | //atributos de la clase 12 | private string color, sabor, forma; 13 | 14 | //el constructor de la clase 15 | public Gomita() 16 | { 17 | color = ""; 18 | sabor = ""; 19 | forma = ""; 20 | } 21 | 22 | //Propiedades de acceso a los atributos 23 | 24 | /// 25 | /// Obtiene o establece la forma de la gomita 26 | /// 27 | public string Forma 28 | { 29 | get { return forma; } 30 | set { forma = value; } 31 | } 32 | 33 | /// 34 | /// Obtiene o establece el color de la gomita 35 | /// 36 | public string Color 37 | { 38 | set { color = value; } 39 | get { return color; } 40 | } 41 | 42 | /// 43 | /// Obtiene o establece el sabor de la gomita 44 | /// 45 | public string Sabor 46 | { 47 | get { return sabor; } 48 | set { sabor = value; } 49 | } 50 | } 51 | } 52 | 53 | -------------------------------------------------------------------------------- /ex04_TiendaGomitas/ex04_TiendaGomitas/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace ex04_TiendaGomitas 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Punto de entrada principal para la aplicación. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /ex04_TiendaGomitas/ex04_TiendaGomitas/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ex04_TiendaGomitas.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /ex04_TiendaGomitas/ex04_TiendaGomitas/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | --------------------------------------------------------------------------------