public object mm(string f,object[] obj,object[] ob)
{
System.Type oType = System.Type.GetTypeFromProgID("sd.soft");
object o = System.Activator.CreateInstance(oType);
object ret = oType.InvokeMember(f, BindingFlags.Public | BindingFlags.InvokeMethod, null, o, obj);
return ret;
}
public void getCursorPos()
{
object[] obj = { 0, 0, 2000, 2000, 0 };
object[] ob = { };
mm("Find", obj,ob);
}
Find(x1, y1, x2, y2,intX,intY)
梦里花落0921
相关分类