20 lines
467 B
C#
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
|
|
|
|
}
|
|
}
|
|
} |