2010年6月13日

在C#中使用SerialPort类实现串口通信

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2010-06-13 22:15 我和我自己 阅读(42) 评论(0) 推荐(0) 编辑

Read and Write info to .txt file(or other kind of files)

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2010-06-13 11:15 我和我自己 阅读(7) 评论(0) 推荐(0) 编辑

Enum,struct

摘要: namespace ConsoleApplication1{ //定义枚举.枚举所使用的类型只能为:sbyte, byte, short, ushort, int, uint, long, ulong enum student : sbyte { name = 1, age = 12, sex = -11 } //定义结构 public struct studentInfo { public st... 阅读全文

posted @ 2010-06-13 09:22 我和我自己 阅读(232) 评论(0) 推荐(0) 编辑

Easy but easy to make syntax error - Array,Struct

摘要: //Declarechar[] chTest = new char[10];int[] iTest = new int[10];string[] strTest = new string[10];//ValuechTest[0] = 'A';iTest[0] = 1;strTest[0] = "Test";//Structpublic struct strTest{ public int iTes... 阅读全文

posted @ 2010-06-13 09:19 我和我自己 阅读(130) 评论(0) 推荐(0) 编辑

导航