谁帮我把这段易语言代码写成C#代码?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了谁帮我把这段易语言代码写成C#代码?相关的知识,希望对你有一定的参考价值。
.版本 2.子程序 文本_投递, , 公开, 向指定窗口句柄的窗口中后台发送文本内容,对游戏有效(无返回值).参数 窗口句柄, 整数型, , 接收消息的窗口句柄.参数 文本内容, 文本型, , 发送的文本内容.局部变量 消息, 字节集.局部变量 计次, 整数型消息 = 到字节集 (文本内容).计次循环首 (取字节集长度 (消息), 计次) 投递消息整数 (窗口句柄, 258, 消息 [计次], 0) 编辑框1.加入文本 (到文本 (消息 [计次]) + #换行符).计次循环尾 ().子程序 投递消息整数, , 公开.参数 窗口句柄, 整数型.参数 消息号, 整数型.参数 消息参数1, 整数型.参数 消息参数2, 整数型PostMessageA (窗口句柄, 消息号, 消息参数1, 消息参数2)----------------DLL命令--------------------------.版本 2.DLL命令 PostMessageA, , , "PostMessageA", 公开, 投递消息 .参数 hwnd, 整数型 .参数 消息号, 整数型 .参数 消息参数1, 整数型 .参数 消息参数2, 整数型
参考技术A [System.Runtime.InteropServices.DllImport("user32.dll")]static extern int PostMessageA(IntPtr h, int msg, int wp, int lp);
void 文本_投递(IntPtr h,string str)
byte[] b = Encoding.GetEncoding("gb2312").GetBytes(str);
for (int i = 0; i < b.Length; i++)
PostMessageA(h, 258, b[i], 0);
本回答被提问者和网友采纳
谁帮我写一个这样的易语言代码
谁帮我写一个这样的易语言代码"result":"data":["head":"cmd":82,"courseid":100131688,"uin":0,"seq":"102487834150226","client_type":0,"flag":0,"body":"rpt_msg_entry":["msg_body":"msg_rich_text":"msg_attr":"uint32_char_set":0,"uint32_color":0,"uint32_effect":0,"uint32_pitch_and_family":0,"uint32_time":1509862718,"rpt_msg_elems":["msg_text":"bytes_str":"早上十点多吃了","uint32_elem_type":1,"msg_add_info":"str_nick_name":"梦想办公家具企业店","uint32_elem_type":18],"msg_content_head":"uint32_div_seq":1509862718,"uint32_pkg_index":0,"uint32_pkg_num":1,"msg_msg_head":"str_remark":"@SELF-1509862718562","uint32_course_id":100131688,"uint32_label":0,"uint32_msg_seq":567914,"uint32_msg_time":1509862716,"uint32_room_id":0,"uint32_uid_type":0,"uint64_from_uin":"256807993","uint64_msg_uid":212410,"uint64_to_uin":"0"]
,"head":"cmd":77,"courseid":100131688,"uin":0,"seq":"102487834586383","client_type":0,"flag":0,"body":"msg_subcmd0x2_member_update_list":"rpt_msg_member_update_list":[],"str_course_abs_id":"100131688","uint32_totalcount":66,"uint32_sub_cmd":2
],"msg":"OK","gettoken":0,"next_heart":0,"retcode":0
已经回答过了你。
json使用问题。
=======================
这是一段json文本,你毛正则表达式!!
看下面也是一段json:
"url":"http://qqe2.com","name":"欢迎使用JSON在线解析编辑器","array":"JSON校验":"http://jsonlint.qqe2.com/","Cron生成":"http://cron.qqe2.com/","JS加密解密":"http://edit.qqe2.com/","boolean":true,"null":null,"number":123,"object":"a":"b","c":"d","e":"f"分析一下json:
分析后,我们取“url”和“a”的值:
编辑框2.内容=json.取通用属性(“url”),就能得到url的值。
同理。
其他json使用请自己去学习
.版本 2
.支持库 spec
.局部变量 Json, 类_Json
.局部变量 属性值, 文本型
.局部变量 n, 整数型
Json.解析 (#常量1)
调试输出 (Json.取通用属性 (“result.data[0].body.rpt_msg_entry[0].msg_body.msg_rich_text.rpt_msg_elems[1].msg_add_info.str_nick_name”))
调试输出 (Json.取通用属性 (“result.data[0].body.rpt_msg_entry[0].msg_msg_head.uint64_from_uin”))
Json.清除 ()
以上是关于谁帮我把这段易语言代码写成C#代码?的主要内容,如果未能解决你的问题,请参考以下文章