Uebungsaufgaben_ITFS_3_SS_2025/Exercises/E22_Dictionary/Exercise_2.cs
2025-02-10 08:57:36 +01:00

20 lines
467 B
C#

using System;
using System.IO;
using Microsoft.VisualBasic;
namespace Exercises_C_Sharp.E22_Dictionary
{
class Exercise_2
{
//Geben Sie alle Value-Werte hintereinander mit Leerzeichen getrennt auf der Konsole aus.
public static void Start()
{
Dictionary<int, string> dic = new() { {12, "Dies"}, {4, "ist"}, {22, "ein"}, {94, "tolles"}, {26, "Ding!"} };
//Code Start
//Code ENDE
}
}
}