摘要:
关键组件:System.windows.Forms.WebBroswer关键声明:类前声明namespace gdi___{ [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class Main : Form { . . . ... 阅读全文
摘要:
用于兼容类型之间的转换,类似于强制类型转换,但是比较安全,如果转换不了,不会抛出异常,返回false,经常写法如下:expression as type等效于以下语句:expression is type ? (type)expression : (type)null例如:Student a= b as student;且其执行效率高于is运算符。详细点击查看 阅读全文