This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/software/1_sem/IBZ-Vererbung/IBZ-Vererbung/Program.cs

24 lines
423 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IBZ_Vererbung
{
class Program
{
static void Main(string[] args)
{
Cat c = new Cat();
c.ID = 5;
Console.WriteLine(c.ID);
Console.ReadKey();
Dog d = new Dog();
d.Name = "Sparky";
}
}
}