Projektdateien hinzufügen.

This commit is contained in:
2023-03-23 12:24:40 +01:00
parent 5fe92f4f47
commit 33e49f846c
51 changed files with 1444 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeispielAggregation
{
internal class Student
{
private string name;
private Class _class;
public Student(string name)
{
this.name = name;
}
public string GetName() { return this.name; }
public void SetClass(Class _class)
{
this._class = _class;
}
public void PrintInfo()
{
Console.WriteLine($"Der Student {name} ist in der klasse {_class.GetName()}");
}
}
}