Files
wbs-csharp/Tag 2/Statische_Felder.cs
T

23 lines
506 B
C#
Raw Normal View History

2026-08-11 10:54:13 +02:00
namespace Tag_02_Unterricht;
public class StatischeFelder
{
public string name = "Alice"; // Instanz-Variable
public static string nachname = "Alison"; // statische Variable
public static void DoSomethingStatic() // statische Methode
{
Console.WriteLine("DoSomethingStatic");
}
private void DoSomething() // Instanz-Methode
{
Console.WriteLine("DoSomething");
}
public void DoSomethingPublic() // Instanz-Methode
{
DoSomething();
}
}