From 49bda8c21eb99744d3f56e354df526a9214bf8c6 Mon Sep 17 00:00:00 2001 From: bicijinlian Date: Tue, 4 Apr 2023 20:37:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'DotnetDemo.CApp/Program.c?= =?UTF-8?q?s'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DotnetDemo.CApp/Program.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/DotnetDemo.CApp/Program.cs b/DotnetDemo.CApp/Program.cs index e5bbae9..6f89991 100644 --- a/DotnetDemo.CApp/Program.cs +++ b/DotnetDemo.CApp/Program.cs @@ -16,21 +16,21 @@ } #if DEBUG - Console.WriteLine("构建模式:Debug"); + Console.WriteLine("构建模式: Debug"); #else - Console.WriteLine("构建模式:Realse"); + Console.WriteLine("构建模式: Realse"); #endif Console.WriteLine($"操作系统版本:{System.Environment.OSVersion}"); - Console.WriteLine($"64位操作系统:{System.Environment.Is64BitOperatingSystem}"); - Console.WriteLine($"主机名:{System.Environment.MachineName}"); + Console.WriteLine($"64位操作系统: {System.Environment.Is64BitOperatingSystem}"); + Console.WriteLine($"主机名: {System.Environment.MachineName}"); Console.WriteLine($"系统帐户名:{System.Environment.UserName}"); Console.WriteLine($"程序域:{System.Environment.UserDomainName}"); Console.WriteLine($"用户交互模式:{System.Environment.UserInteractive}"); Console.WriteLine($"进程数:{System.Environment.ProcessorCount}"); Console.WriteLine($"进程标识:{System.Environment.ProcessId}"); - Console.WriteLine($"64位进程:{System.Environment.Is64BitProcess}"); - Console.WriteLine($"线程托管ID:{System.Environment.CurrentManagedThreadId}"); + Console.WriteLine($"64位进程: {System.Environment.Is64BitProcess}"); + Console.WriteLine($"线程托管ID: {System.Environment.CurrentManagedThreadId}"); Console.WriteLine($"当前目录:{System.Environment.CurrentDirectory}"); Console.WriteLine($"程序文件:{System.Environment.ProcessPath}");