2013年5月24日
摘要: DllImport是System.Runtime.InteropServices命名空间下的一个属性类,其功能是提供从非托管DLL导出的函数的必要调用信息。 DllImport属性应用于方法,要求最少要提供包含入口点的dll的名称。 DllImport的定义如下:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->[AttributeUsage(AttributeTargets.Method)] publicclass DllImportAttr 阅读全文
posted @ 2013-05-24 17:36 NLazyo 阅读(2317) 评论(0) 推荐(0) 编辑
摘要: private delegate void AsyncEventHandler(); AsyncEventHandler asy = new AsyncEventHandler(delegate { new ShellApplication().Run(); }); IAsyncResult ia = asy.BeginInvoke(new AsyncCallback(CallbackMethod), asy);private void CallbackMeth... 阅读全文
posted @ 2013-05-24 15:16 NLazyo 阅读(268) 评论(0) 推荐(0) 编辑