Created
October 10, 2013 23:01
-
-
Save Fhernd/6926979 to your computer and use it in GitHub Desktop.
Demostración de herencia y propiedades en C#.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public class PruebaFigura | |
{ | |
public static void Main () | |
{ | |
Figura[] figuras = | |
{ | |
new Cuadrado (5, "Cuadrado #1"), | |
new Circulo (3, "Círculo #1"), | |
new Rectangulo (4, 5, "Rectángulo #1") | |
}; | |
Console.WriteLine ("Colección de Figuras"); | |
foreach (Figura figura in figuras) | |
{ | |
Console.WriteLine (figura); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment