摘要:
下表列出了由 GridView 类型公开的成员。 阅读全文
摘要:
using System;
using System.Runtime.InteropServices;
using System.Management;
namespace Hardware
{
///
/// Hardware_Mac 的摘要说明。
///
public class HardwareInfo
{
//取机器名
public string GetHostName()
{
return System.Net.Dns.GetHostName();
}
//取CPU编号
public String GetCpuID()
{
阅读全文