私はプロジェクトを開始しようとしています。これが現在、ウェルカム画面用に持っているものです。
string[] welcome = new string[4]
{
"Welcome",
"Choose A Option Bellow By Inputing The Number And Clicking Enter.",
"1. View C:\\Windows\\ File directory",
"2. View Your Own Custom Directory"
};
string userChoice;
for (int x = 0; x < 4; x++)
{
Console.WriteLine(
"{0," + ((Console.WindowWidth / 2) + welcome[x].Length / 2) + "}", welcome[x]);
}
読み取り行も中央に配置するにはどうすればよいですか? ユーザーが選択したときに、その選択も中央に配置されるようにしますか?