Ok und wie komme ich dahin zurück.
Einmal war ich in "main thread" da stand überhaupt keine Option
und einmal war ich bei "main thread, module KERNELBA" da stand auch nur "Selection"
Bei dem Programm habe ich diese Option aber noch garnicht gesehen.
Ich lad mal das Programm hoch.
Und hier noch der Code falls jemand es selber erstellen will xD
PHP Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TryJust
{
class Program
{
static void Main(string[] args)
{
while (true)
{
if (Console.ReadLine() == "password")
{
Console.WriteLine("Du hasst mich gecrackt");
Console.WriteLine("Das Passwort lautet \"password\"");
}
else
{
Console.WriteLine("Looser, du hast mich nicht gecrackt");
Console.WriteLine("Musst es noch mal probieren xD");
Console.WriteLine();
}
}
}
}
}