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