27 lines
615 B
C#
27 lines
615 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp.E20_Lists
|
|
{
|
|
class Exercise_2
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Erstellen Sie eine Liste, in die unten die drei Werte reingeschrieben werden:
|
|
|
|
/*Code START*/
|
|
dynamic superList = 1;
|
|
/*Code ENDE*/
|
|
|
|
superList.Add("Hallo");
|
|
superList.Add("Hi");
|
|
superList.Insert(0, "Hey");
|
|
|
|
//Kontrolle:
|
|
foreach(var element in superList)
|
|
Console.WriteLine(element);
|
|
|
|
}
|
|
}
|
|
} |