在.NET中可以使用下面代码打印出变量的内存地址
GCHandle hander = GCHandle.Alloc(device);
var pin = GCHandle.ToIntPtr(hander);
log.Debug(string.Format("Device :{0}", pin));
在.NET中可以使用下面代码打印出变量的内存地址
GCHandle hander = GCHandle.Alloc(device);
var pin = GCHandle.ToIntPtr(hander);
log.Debug(string.Format("Device :{0}", pin));
© 著作权归作者所有