2007年9月27日
摘要: 1 /**//// 2 /// 添加行号 3 /// 4 /// 5 /// 6 private void cMS_CNTRDataGridView_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) 7 ... 阅读全文
posted @ 2007-09-27 18:16 油纸伞 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 用于在兼容的引用类型之间执行转换。例如: string s = someObject as string; 1if (s != null) 2{ 3 // someObject is a string. 4} 5 备注 as 运算符类似于强制转换,所不同的是,当转换失败时,运算符将产生空,而不是引发异常。更严格地说,这种形式的表达式 1expression as type 2 等效于 1ex... 阅读全文
posted @ 2007-09-27 14:07 油纸伞 阅读(306) 评论(0) 推荐(0) 编辑