随风而去

博客园 首页 新随笔 联系 订阅 管理

2007年9月24日 #

摘要: 1. 创建一位图 int bmWidth = 425; // 图片的宽 int bmHeight = 185; // 图片的高 Bitmap bm = new Bitmap(bmWidth,bmHeight); //创建位图 Graphics g = Graphics.FromImage(bm); 2.画矩形图 int xPoint, yPoint; //... 阅读全文
posted @ 2007-09-24 21:37 Aaron_Zhang 阅读(872) 评论(2) 推荐(0)

摘要: using System; public class MyClass { public static void Main() { string s1 = "abcd"; string s2 = "abcde"; string ss = null; char[] arr1 = s1.ToCharArray(); ... 阅读全文
posted @ 2007-09-24 20:55 Aaron_Zhang 阅读(1284) 评论(0) 推荐(0)