摘要:
usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.IO.Ports;usingSystem.ComponentModel;usingSystem.Threading;namespaceCserver{classToCom{privausing System; using System.Collections.Generic; using System.Text; using System.IO.Ports; using System.ComponentModel; using System.Thre 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; using System.Drawing; using System.Drawing.Imaging; namespace RealtimeCurve { /// SUMMARY /// 说明:实时图片生成类,在本例中横向坐标上每个像素都会有一个控制点 /// 实际开发中可以减少控制点,比如每5个像素用一个控制点 /// 这样的效果或许更加逼真 /// 作者:周公 /// 日期:2008-07-21 /// 首发地址:A href="http 阅读全文
摘要:
微软代码:取出本机的COM端口字符串public static string[] GetPortNames(){ RegistryKey localMachine = null; RegistryKey key2 = null;string[] textArray = null;//这里有个断言,判断该注册表项是否存在 new RegistryPermission(RegistryPermissionAccess.Read, @"HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM").Assert(); try { localMachine = R 阅读全文