Files
lightsetup/LightSetupMd5/ComputerHelper.cs
2023-05-22 09:29:58 +08:00

17 lines
351 B
C#

namespace LightSetupMd5
{
internal class ComputerHelper
{
internal string GetComputerName()
{
try
{
return System.Environment.MachineName;
}
catch (Exception e)
{
return "不能获取计算机名称";
}
}
}
}