C# färben bestimmten Bereich?

1 Antwort

Console.Write("Ich bin die Farbe ");
Console.ForegroundColor = ConsoleColor.Red;
Console.Write(" rot ");
Quelle:
https://msdn.microsoft.com/en-us/library/system.console.foregroundcolor(v=vs.110).aspx

dies weiß ich auch aber wie mache ich nur dieses array da rot :/ also so wie im beispiel meine ich (Ich bin die Farbe rot soll nicht rot sein xD)

0
@Sekai2706

Console.Write("Ich bin weiß " );

Console.ForgroundColor = ConsoleColor.Red;

Console.Write(array[0]);

1