Sorry das ich nochmal poste aber: xD
Ich habe schon einen Code, ich bräuchte nur minimale unterstützung
Mein Code:
using System;
using Cosmos.Compiler.Builder;
using System.Windows.Forms.ComponentModel;
using System.Windows.Forms.Design;
using System.Windows.Forms.Layout;
using System.Windows.Forms.PropertyGridInternal;
using System.Windows.Forms.VisualStyles;
using System.Windows.Forms;
using Cosmos.Debug;
using Cosmos.Kernel.ManagedMemory;
using Cosmos.Kernel;
using Cosmos.Sys.Network;
using Cosmos.Sys;
namespace Cosmos_OS
{
class Program
{
public static void Init()
{
var xBoot = new Cosmos.Sys.Boot();
xBoot.Execute();
Console.WriteLine("XCube V0.01");
Console.WriteLine("Type help for help");
while (true)
{
string command = Console.ReadLine();
switch (command)
{
case "help":
{
Console.WriteLine("go");
break;
}
case "go":
{
Console.WriteLine("Drücken sie 1 und enter");
Console.ReadLine();
Console.WriteLine("gestartet");
{
Form form = new Form();
form.ShowDialog();
}
break;
}
default:
{
Console.WriteLine("No such command");
command = null;
break;
}
}
}
}
}
}






