摘要:
有时自己写的.NET软件或编译成DLL的ASP.NET不想让人随便用,可以在代码中加上你将使用的那台电脑的CPU序列号验证,以下就是读取CPU序列号的代码,记得using System.Management; public static string getCPUID() { string cpuInfo = "";//cpu序列号 ManagementClass cimobject... 阅读全文
摘要:
局域网内是可以获得客户端mac地址的,但是不能跨网段using System;using System.Runtime.InteropServices; namespace test{ /// /// MACAddr 的摘要说明。 /// public class MACAddr { private MACAddr() { // // TODO: 在此处添加构造函数逻辑 //... 阅读全文