C#
gqm
这个作者很懒,什么都没留下…
展开
-
C#二维码生成代码
C# 二维码工具转载 2017-01-16 17:55:46 · 1045 阅读 · 0 评论 -
蓝牙编程
蓝牙编码 http://www.tuicool.com/articles/iYjYn2转载 2017-01-16 18:06:25 · 310 阅读 · 0 评论 -
常用网站
红黑联盟 http://www.2cto.com/ ITEYE http://www.iteye.com/原创 2017-01-16 17:59:32 · 143 阅读 · 0 评论 -
c# 线程中如何控制控件焦点
请添加下面类为顶级类: public static class CtrlEx { public static void InvokeFocus( Control c) { if (c.InvokeRequired) { c.Invoke(new Acti转载 2017-04-25 17:26:50 · 421 阅读 · 0 评论 -
C# string类型和byte[]类型相互转换
C# string类型和byte[]类型相互转换 string类型转成byte[]: byte[] byteArray = System.Text.Encoding.Default.GetBytes ( str ); byte[]转成string: string str = System.Text.Encoding.Default.GetString ( byteArray );转载 2017-07-21 11:52:24 · 441 阅读 · 0 评论 -
C# string类型和byte[]类型相互转换
C# string类型和byte[]类型相互转换 string类型转成byte[]: byte[] byteArray = System.Text.Encoding.Default.GetBytes ( str ); byte[]转成string: string str = System.Text.Encoding.Default.GetString ( byteArray );转载 2017-07-21 11:58:01 · 179 阅读 · 0 评论