C# 在引用插件中 出现的问题| Csharp cite the plugin problem_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C# 在引用插件中 出现的问题| Csharp cite the plugin problem

C# 在引用插件中 出现的问题| Csharp cite the plugin problem

 2014/12/29 3:04:08  三木人  程序员俱乐部  我要评论(0)
  • 摘要:背景:使用C#操纵鼠标进行重复性的工作background:usingCsharptohandlethekeyboardormousetodotherepetitivework.问题:属性“DllImport”在该声明类型中无效。它只在“method”声明中有效。错误1属性“DllImport”在该声明类Question:attribution“DllImport”isinvalidinthedeclaration
  • 标签:C# 插件 Plugin 问题 ARP

背景:使用C#操纵鼠标进行重复性的工作

background: using Csharp to handle the keyboard or mouse to do the repetitive work.

问题:属性“DllImport”在该声明类型中无效。它只在“method”声明中有效。错误 1 属性“DllImport”在该声明类

Question:attribution “DllImport” is invalid in the declaration, it is just valid in the “method” declaration

解决方案:使用外部调用的方法

Solution:Use the external method

code example:

private static extern int mouse_event(
int dwFlags,// 下表中标志之一或它们的组合
int dx,
int dy, //指定x,y方向的绝对位置或相对位置
int cButtons,//没有使用
int dwExtraInfo//没有使用
);

extern is used to declare the method implemented externally, it is often used in the situation that interop (using System.Runtime.InteropServices) to call unmanaged code in and DllImport is used at the same time. At that time the method should declard as static.

上一篇: WCF trace、log 下一篇: 没有下一篇了!
发表评论
用户名: 匿名