3

だから私はc#をいじって、配列から文字列を生成する方法を考えていましたが、ランダムな色で:

    while (true)
        {
            string[] x = new string[] { "", "", "" };
            Random name = new Random();
            Console.WriteLine((x[name.Next(3)]));
            Thread.Sleep(100);
        }

xを出力するときは、ランダムな色にします。ありがとう

4

2 に答える 2

7
// Your array should be declared outside of the loop

string[] x = new string[] { "", "", "" }; 
Random random = new Random();     

// Also you should NEVER have an endless loop ;)
while (true)         
{            
     Console.ForegroundColor = Color.FromArgb(random.Next(255), random.Next(255), random.Next(255));

     Console.WriteLine((x[random.Next(x.Length)]));             
     Thread.Sleep(100);         
} 
于 2012-06-09T02:16:52.153 に答える
3

標準のコンソールカラーを使用する場合は、ConsoleColor EnumerationEnum.GetNames()を組み合わせてランダ​​ムなカラーを取得できます。次に、 Console.ForegroundColorまたはConsole.BackgroundColor 、あるいはその両方を使用して、コンソールの色を変更します。

// Store these as static variables; they will never be changing
String[] colorNames = ConsoleColor.GetNames(typeof(ConsoleColor));
int numColors = colorNames.Length;

// ...

Random rand = new Random(); // No need to create a new one for each iteration.
string[] x = new string[] { "", "", "" };
while(true) // This should probably be based on some condition, rather than 'true'
{
    // Get random ConsoleColor string
    string colorName = colorNames[rand.Next(numColors)];
    // Get ConsoleColor from string name
    ConsoleColor color = (ConsoleColor) Enum.Parse(typeof(ConsoleColor), colorName);

    // Assuming you want to set the Foreground here, not the Background
    Console.ForegroundColor = color;

    Console.WriteLine((x[rand.Next(x.Length)]));
    Thread.Sleep(100);
}
于 2012-06-09T02:20:54.773 に答える