摘要:[SuppressMessage("Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1401:FieldsMustBePrivate", Justification = "Reviewed.")]很奇怪,前面增加Microsoft后,可以。
阅读全文
10 2014 档案
摘要:Finally ,找到工具来参考转换。 Source: https://github.com/jaredpar/pinvokeTool: https://archive.codeplex.com/?p=clrinterop 书籍 参考: NET and COM: The Complete Inter
阅读全文
摘要:C语言:memset extern void *memset(void *buffer,int c,int count); #include 功能:把buffer所指内存区域的前count个字节设置成字符c 说明:返回指向buffer的指针.char a[100]; memset(a,'\0',s...
阅读全文
摘要:原文:http://www.codeguru.com/cpp/cpp/cpp_mfc/callbacks/article.php/c10557/Callback-Functions-Tutorial.htmCallback Functions TutorialIntroductionIf you a...
阅读全文
摘要:http://yoda.arachsys.com/csharp/parameters.html
阅读全文
摘要:C#动态调用C++编写的DLL函数动态加载DLL需要使用Windows API函数:LoadLibrary、GetProcAddress以及FreeLibrary。我们可以使用DllImport在C#中使用这三个函数。[DllImport("Kernel32")]public static exte...
阅读全文
摘要:从微软的网站上面下载了一些驱动,发现竟然没有Setup或者Install安装程序,囧。快速查了一下,直接在inf文件右击的菜单里面选择“安装”即可。突然有点out的感觉。参考:http://digitalmediaphile.com/index.php/2014/07/09/how-to-manua...
阅读全文