摘要:
C#中画三角形和填充三角形的简单实现: private void Form1_Paint(object sender, PaintEventArgs e) { Graphics g = e.Graphics; //绘制三角形 DrawTriangle_1(g); //填充三角形 FillTriang 阅读全文
摘要:
C#中向ListView控件中添加一行数据: 1,先声明一个ListViewItem: ListViewItem item = new ListViewItem(); 2,添加第一列数据: item.Text = "第1列数据"; 3,依次添加后面列的数据: item.SubItems.Add(" 阅读全文
摘要:
C#中字节数组byte[]和字符串string类型的相互转换: string转byte[]: byte[] byteArray = System.Text.Encoding.Default.GetBytes ( str ); byte[]转string: string str = System.Te 阅读全文
摘要:
C#中数据类型char*,const char*和string的三者转换: 1. const char* 和string 转换 (1) const char*转换为 string,直接赋值即可。 EX: const char* tmp = "tsinghua". string s = tmp; (2 阅读全文
摘要:
C#中通过SendARP读取MAC地址: using System.Runtime.InteropServices;publicstaticstring GetMacBySendARP(string remoteIP) { StringBuilder macAddress =new StringBu 阅读全文
摘要:
C#对字典Dictionary 的添加,遍历,移除系列操作: //一、创建泛型哈希表,然后加入元素 Dictionary<string, string> oscar = new Dictionary<string, string>(); oscar.Add("哈莉?贝瑞", "《死囚之舞》"); o 阅读全文