23 lines
506 B
C#
23 lines
506 B
C#
|
|
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();
|
||
|
|
}
|
||
|
|
}
|