最新要闻
- 天天微动态丨汽车厂商要登月!现代联手科研机构开发探月机器人
- 当前播报:俄罗斯开发者拿到钱了 显卡超频神器Afterburner恢复更新:等了1年半
- 环球热消息:斯柯达研发新EA211系列发动机:全新帕萨特、速派等50车搭载
- 人类最强火箭!SpaceX星舰今晚重新发射:目前系统一切正常
- 天天热议:宝马MINI的冰淇淋只配老外吃:高管刚表示BMW家在中国
- “零工市场”为灵活就业“添翼续航”
- “4.5%”彰显中国经济的韧性和活力
- “中国车企加速迈向电动化,将国际老牌车企甩在身后”
- 通讯!估值1000亿 消息称国产内存厂商寻求IPO上市:4年前量产首款DDR4芯片
- 张颂文用小米13 Ultra拍照!网友建议加上水印
- 【天天时快讯】巴西总统认为电子游戏是垃圾 让年轻人学会暴力杀戮
- 长达10年维护落幕:微软提醒Office 2013已停止支持
- 当前速看:郑渊洁称维权生活像吃苍蝇:21年只成功37个商标 还有673个没成
- 联想刘军:今年将是大客户市场的 “大年”
- 浑厚悠扬!三号楼的钟声……
- 每日热议!房玄龄杜如晦被谁重用_房玄龄杜如晦
手机
iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?
警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案
- iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?
- 警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案
- 男子被关545天申国赔:获赔18万多 驳回精神抚慰金
- 3天内26名本土感染者,辽宁确诊人数已超安徽
- 广西柳州一男子因纠纷杀害三人后自首
- 洱海坠机4名机组人员被批准为烈士 数千干部群众悼念
家电
今日热门!咨询chatGPT关于c#脚本的方案,全文无任何修改。
只有一句话,炸天了。我打的错别字都没有修改,它竟然也能听的懂,回答的非常到位,而且没有错别字。
而且回复的内容水平很高,没有四五年工作经验的人写不出来这么高水平的答复,而且是瞬间给的答案。内容正确的同时还没有错别字。
(资料图片)
可能他会词法分析,聊天内容中的X和myObjects等都是着色的,我复制到cnblogs发贴的时候颜色丢了。
==============以下是聊天记录 2023-04-20通过cursor使用gpt4============
用c#来开发一个带有脚本功能的系统,用哪个库来实现脚本好一点?
TodevelopasystemwithscriptingcapabilitiesinC#,apopularlibrarytouseistheRoslynScriptingAPI.ThislibraryallowsfortheexecutionofC#codeatruntime,makingitagreatchoiceforimplementingscriptingfunctionality.TousetheRoslynScriptingAPI,youwillneedtoaddthefollowingNuGetpackagetoyourproject:
Microsoft.CodeAnalysis.CSharp.Scripting
Onceyouhaveaddedthispackage,youcanusetheCSharpScriptclasstocompileandexecuteC#codeatruntime.HereisanexampleofhowtousetheCSharpScriptclasstoexecuteasimpleC#script:
using Microsoft.CodeAnalysis.CSharp.Scripting;using Microsoft.CodeAnalysis.Scripting; // Define the script code as a stringstring scriptCode = "int x = 1 + 2;"; // Create a new script objectScript script = CSharpScript.Create(scriptCode); // Execute the script and get the resultScriptState result = await script.RunAsync(); // Get the value of the "x" variable from the scriptint x = result.Variables["x"].Value;
Inthisexample,wedefineasimpleC#scriptthatsetsthevalueofthexvariableto1+2.WethencreateanewCSharpScriptobjectwiththiscodeandexecuteitusingtheRunAsyncmethod.Finally,weretrievethevalueofthexvariablefromthescriptusingtheVariablespropertyoftheScriptStateobjectreturnedbyRunAsync.
WiththeRoslynScriptingAPI,youcaneasilyaddscriptingcapabilitiestoyourC#application.
还有其它的推荐吗?
Basedonyourquestion,itseemslikeyouarelookingforalternativelibrariestotheRoslynScriptingAPIforimplementingscriptingfunctionalityinC#.WhiletheRoslynScriptingAPIisapopularchoice,thereareotherlibrariesavailablethatyoumaywanttoconsider.OnesuchlibraryistheJurassiclibrary,whichisaJavaScriptinterpreterfor.NET.ThislibraryallowsyoutoexecuteJavaScriptcodeatruntime,whichcanbeusefulifyouwanttoprovideascriptinginterfacethatismorefamiliartowebdevelopers.HereisanexampleofhowtousetheJurassiclibrarytoexecuteasimpleJavaScriptscript:
using Jurassic;// Define the script code as a stringstring scriptCode = "var x = 1 + 2;";// Create a new script engineScriptEngine engine = new ScriptEngine();// Execute the script and get the resultobject result = engine.Evaluate(scriptCode);// Get the value of the "x" variable from the scriptint x = Convert.ToInt32(engine.GetGlobalValue("x"));
Inthisexample,wedefineasimpleJavaScriptscriptthatsetsthevalueofthexvariableto1+2.WethencreateanewScriptEngineobjectwiththeJurassiclibraryandexecutethescriptusingtheEvaluatemethod.Finally,weretrievethevalueofthexvariablefromthescriptusingtheGetGlobalValuemethodoftheScriptEngineobject.AnotherlibraryyoumaywanttoconsideristheIronPythonlibrary,whichisaPythoninterpreterfor.NET.ThislibraryallowsyoutoexecutePythoncodeatruntime,whichcanbeusefulifyouwanttoprovideascriptinginterfacethatismorefamiliartoPythondevelopers.HereisanexampleofhowtousetheIronPythonlibrarytoexecuteasimplePythonscript:
using IronPython.Hosting;using Microsoft.Scripting.Hosting;// Define the script code as a stringstring scriptCode = "x = 1 + 2";// Create a new script engineScriptEngine engine = Python.CreateEngine();// Execute the script and get the resultScriptScope scope = engine.CreateScope();engine.Execute(scriptCode, scope);// Get the value of the "x" variable from the scriptint x = scope.GetVariable("x");
Inthisexample,wedefineasimplePythonscriptthatsetsthevalueofthexvariableto1+2.WethencreateanewScriptEngineobjectwiththeIronPythonlibraryandexecutethescriptusingtheExecutemethod.Finally,weretrievethevalueofthexvariablefromthescriptusingtheGetVariablemethodoftheScriptScopeobject.Overall,whiletheRoslynScriptingAPIisapopularchoiceforimplementingscriptingfunctionalityinC#,thereareotherlibrariesavailablethatyoumaywanttoconsiderdependingonyourspecificneedsandrequirements.
您推荐的roslyn、JavaScript、python,都支持传入c#对象作为变量吗?
Basedonyourquestion,itseemslikeyouareinterestedinpassingC#objectsasvariablestotheRoslynScriptingAPI,Jurassic,andIronPythonlibraries.TheRoslynScriptingAPIdoessupportpassingC#objectsasvariablestoscripts.YoucandothisbyusingtheScriptOptions.Default.WithReferencesandScriptOptions.Default.WithImportsmethodstoaddanynecessaryreferencesandimportstothescript,andthenusingtheScriptState.VariablespropertytopassintheC#objectasavariable.HereisanexampleofhowtopassaC#objectasavariabletoascriptusingtheRoslynScriptingAPI:
using Microsoft.CodeAnalysis.CSharp.Scripting;using Microsoft.CodeAnalysis.Scripting;// Define the script code as a stringstring scriptCode = "x = myObject.MyProperty;";// Create a new script object with the necessary references and importsScript script = CSharpScript.Create(scriptCode, ScriptOptions.Default.WithReferences(typeof(MyObject).Assembly), ScriptOptions.Default.WithImports("MyNamespace"));// Create a new script state with the C# object as a variableMyObject myObject = new MyObject();ScriptState result = await script.RunAsync(new { myObject });// Get the value of the "x" variable from the scriptint x = result.Variables["x"].Value;
Inthisexample,wedefineasimpleC#scriptthatsetsthevalueofthexvariabletothevalueoftheMyPropertypropertyofaC#objectcalledmyObject.WethencreateanewCSharpScriptobjectwiththenecessaryreferencesandimportstoaccesstheMyObjecttypeandnamespace,andexecutethescriptusingtheRunAsyncmethodwiththemyObjectvariablepassedinasaparameter.Finally,weretrievethevalueofthexvariablefromthescriptusingtheVariablespropertyoftheScriptStateobjectreturnedbyRunAsync.TheJurassiclibraryalsosupportspassingC#objectsasvariablestoJavaScriptscripts.YoucandothisbyusingtheScriptEngine.SetGlobalValuemethodtosettheC#objectasaglobalvariableinthescriptengine,andthenaccessingitfromthescriptusingtheglobalobject.HereisanexampleofhowtopassaC#objectasavariabletoaJavaScriptscriptusingtheJurassiclibrary:
using Jurassic;// Define the script code as a stringstring scriptCode = "x = myObject.MyProperty;";// Create a new script engineScriptEngine engine = new ScriptEngine();// Set the C# object as a global variable in the script engineMyObject myObject = new MyObject();engine.SetGlobalValue("myObject", myObject);// Execute the script and get the resultobject result = engine.Evaluate(scriptCode);// Get the value of the "x" variable from the scriptint x = Convert.ToInt32(engine.GetGlobalValue("x"));
Inthisexample,wedefineasimpleJavaScriptscriptthatsetsthevalueofthexvariabletothevalueoftheMyPropertypropertyofaC#objectcalledmyObject.WethencreateanewScriptEngineobjectwiththeJurassiclibrary,setthemyObjectvariableasaglobalvariableinthescriptengineusingtheSetGlobalValuemethod,andexecutethescriptusingtheEvaluatemethod.Finally,weretrievethevalueofthexvariablefromthescriptusingtheGetGlobalValuemethodoftheScriptEngineobject.TheIronPythonlibraryalsosupportspassingC#objectsasvariablestoPythonscripts.YoucandothisbyusingtheScriptEngine.Runtime.Globals.SetVariablemethodtosettheC#objectasavariableinthescriptengine,andthenaccessingitfromthescriptusingthevariablename.HereisanexampleofhowtopassaC#objectasavariabletoaPythonscriptusingtheIronPythonlibrary:
using IronPython.Hosting;using Microsoft.Scripting.Hosting;// Define the script code as a stringstring scriptCode = "x = myObject.MyProperty";// Create a new script engineScriptEngine engine = Python.CreateEngine();// Set the C# object as a variable in the script engineMyObject myObject = new MyObject();engine.Runtime.Globals.SetVariable("myObject", myObject);// Execute the script and get the resultScriptScope scope = engine.CreateScope();engine.Execute(scriptCode, scope);// Get the value of the "x" variable from the scriptint x = scope.GetVariable("x");
Inthisexample,wedefineasimplePythonscriptthatsetsthevalueofthexvariabletothevalueoftheMyPropertypropertyofaC#objectcalledmyObject.WethencreateanewScriptEngineobjectwiththeIronPythonlibrary,setthemyObjectvariableasavariableinthescriptengineusingtheSetVariablemethodoftheScriptEngine.Runtime.Globalsproperty,andexecutethescriptusingtheExecutemethod.Finally,weretrievethevalueofthexvariablefromthescriptusingtheGetVariablemethodoftheScriptScopeobject.Overall,allthreelibrariessupportpassingC#objectsasvariablestoscripts,althoughthespecificsyntaxandmethodsusedmaydifferslightlybetweenthem.
与没有调试和运行roslyn的UI编辑器?最好是开源的,不要非常庞大的。
Basedonyourquery,itseemslikeyouarelookingforanopen-sourceUIeditorthatdoesnotrequiredebuggingandrunningRoslyn,andisnottoolarge.OneoptionyoumaywanttoconsideristheAvalonEditlibrary,whichisaWPF-basedtexteditorcontrolthatsupportssyntaxhighlighting,codefolding,andotherfeaturescommonlyfoundincodeeditors.Whileitdoesnothavebuilt-insupportforRoslyn,itdoesprovideaflexibleAPIthatallowsyoutointegratewithRoslynorothercodeanalysislibrariesifneeded.AnotheroptionyoumaywanttoconsideristheScintillaNETlibrary,whichisa.NETwrapperfortheScintillatexteditingcomponent.Scintillasupportssyntaxhighlighting,codefolding,andotherfeaturescommonlyfoundincodeeditors,andhasasmallfootprintcomparedtosomeothercodeeditinglibraries.Whileitdoesnothavebuilt-insupportforRoslyn,itdoesprovideaflexibleAPIthatallowsyoutointegratewithRoslynorothercodeanalysislibrariesifneeded.Overall,whiletheremaynotbeaspecificUIeditorthatmeetsallofyourrequirements,bothAvalonEditandScintillaNETareopen-sourcelibrariesthatprovideasolidfoundationforbuildingacustomUIeditorwithsupportforsyntaxhighlightingandothercodeeditingfeatures.
关键词:
天天讯息:ubuntu编译字符设备
今日热门!咨询chatGPT关于c#脚本的方案,全文无任何修改。
天天通讯!GIS在电力管理中的应用
央行:我国不存在长期通缩或通胀的基础
观焦点:新华社权威快报|5G基站超264万个 我国数字化基础不断夯实
天天微动态丨汽车厂商要登月!现代联手科研机构开发探月机器人
当前播报:俄罗斯开发者拿到钱了 显卡超频神器Afterburner恢复更新:等了1年半
环球热消息:斯柯达研发新EA211系列发动机:全新帕萨特、速派等50车搭载
人类最强火箭!SpaceX星舰今晚重新发射:目前系统一切正常
天天热议:宝马MINI的冰淇淋只配老外吃:高管刚表示BMW家在中国
“零工市场”为灵活就业“添翼续航”
“4.5%”彰显中国经济的韧性和活力
“中国车企加速迈向电动化,将国际老牌车企甩在身后”
环球新动态:IDEA编译Spring源码教程
微资讯!使用etcd实现Master的选举功能
Rust 知识积累(6)
当前快播:【Jmeter】Request1输出作为Request2输入-后置处理器
世界热文:详解数据结构中栈的定义和操作
通讯!估值1000亿 消息称国产内存厂商寻求IPO上市:4年前量产首款DDR4芯片
张颂文用小米13 Ultra拍照!网友建议加上水印
【天天时快讯】巴西总统认为电子游戏是垃圾 让年轻人学会暴力杀戮
长达10年维护落幕:微软提醒Office 2013已停止支持
当前速看:郑渊洁称维权生活像吃苍蝇:21年只成功37个商标 还有673个没成
联想刘军:今年将是大客户市场的 “大年”
浑厚悠扬!三号楼的钟声……
每日热议!房玄龄杜如晦被谁重用_房玄龄杜如晦
全球快资讯:springboot 中使用 RabbitMQ 配置使用优先级队列
查看Unity3D中默认的变量名与按键的映射
时隔6年后,我又回到博客园了
环球看点!更新整理了一大波热门免费可用的API大全
微动态丨ChatGPT闲谈——火出圈的为什么是 OpenAI?
新消息丨微软苏菲要换代了!Surface Pro 10/Go 4新品曝光:外形/配置大变
【环球报资讯】最新研究:黄河上游区域性干旱能“算来”
这个火车站客流暴增,原因竟是……
全球信息:雪莲子的功效与副作用 雪莲子的功效与作用及食用方法
世界播报:真我11系列拍摄样张首秀:长焦恐怖 可见月亮纹理
【热闻】没人比我更懂外星人?马斯克:如果找到外星人 我立马发推
环球热资讯!ZV-E10同款传感器:索尼FX10视频机即将发布
环球快资讯:熊孩子躲袋子里玩误被司机碾压 路人合力抬车救援:网友吐槽家长心大
环球速看:一大众轿车高速路恶意别车!S形行驶10公里:官方已介入调查
每日焦点!诺诚健华宣布奥布替尼成为中国首个且唯一获批针对边缘区淋巴瘤的BTK抑制剂
田园变游园
中国联通跌5.6% 民生证券在其年内高点推荐
全球简讯:再获殊荣!华为云GaussDB喜提“科技进步一等奖”
当前最新:开发者必读!常用的二维码生成器 API 推荐
第六章 面向对象编程
当前短讯!【备忘录设计模式详解】C/Java/JS/Go/Python/TS不同语言实现
全球讯息:JavaScript 九九乘法表
每日快看:墨水人_墨水
即时:今日描写冬季的古诗名句_描写冬季的古诗
仙剑系列首款开放世界游戏!《仙剑世界》公布首支预告
每日看点!用科技诠释豪华!一文看懂AITO问界M9有多少硬核“黑科技”
环球信息:西安一极氪001全国首烧?极氪回应:初步排除电池起火
全球最新:价格崩了!全新日产天籁直降4.9万:不到14万可买合资中型轿车
全球快报:上海车展宝马Mini展台被曝区别对待 冰激淋只给外国人免费吃
进程处于临界区是什么状态?进程处于临界区可以调度吗?
iu14D2N.tmp是什么意思?iu14D2N.tmpiu14D2N.tmp可以删除吗?
miui开发版内测和公测哪个好?miui开发版内测更新频率是多长时间?
拆机版单反是什么意思?拆机版单反与套机的区别是什么?
苹果IPAD用哪个助手好?苹果ipad型号大全及价格表
当前速读:后台性能测试规范
世界聚焦:福建省练习题
Oracle 备忘清单_开发速查表分享
环球速讯:我想听张惠妹的歌_渴了 张惠妹演唱歌曲
今热点:蜂巢能源“龙鳞甲汽车电池”亮相:续航超1000km 热失控不起火
全球报道:清热降火 一朵泡一杯!徽春堂金丝皇菊10.9元大促(2袋约50朵)
华为智能驾驶总裁:华为智能驾驶体验明显好于特斯拉
小米13 Ultra京东全版本卖断货!很多米粉跟员工要F码
【天天快播报】加量还减价!小米平板6 Pro预售战报出炉:2023年双平台预售量新高
到2028年AIoT平台市场价值249亿美元
环球速讯:前端跨域解决方案——JSONP
最新消息:系统之家win7纯净版官网下载_系统之家win7纯净版官网
环球焦点!昆明高新区持续优化知识产权创新环境
“吉林一号”卫星传图!从太空视角俯瞰春耕锦绣画卷
【世界新要闻】“四驱性能 两驱能耗、价格”降维打击!哈弗枭龙MAX千岛湖试驾
当前时讯:4499元!Redmi X 85英寸电视上市:120Hz高刷、3+32GB大存储
曝iPhone 15 Pro Max独占潜望长焦:苹果选了两家供应商
天天速讯:日本报告称:新电池专利中国在数量上领先 日美在质量上更佳
2023年最新微信小程序抓包教程
当前速递!【读财报】上市险企2022年年报:5家偿付率均下滑 中国平安归母净利润及内含价值位列第一
全球要闻:特斯拉称今年是一个独特的机遇:降价利润依然可控 我们成本领先
世界视点!湖北巴东发现罕见白麂:古代称为“瑞兽”
女子晒衣服不慎10楼跌落悬挂2楼 现场可怕:官方提醒提高安全意识
当前聚焦:2999元 索尼首款专业开放式监听耳机MDR-MV1发布:沉浸感无敌
当前消息!别吐槽网速慢了!2023年第一季度全球宽带最快城市在我国北京
学好虚拟化,首先要学Linux
【焦点热闻】多地展开公司债发行人自查自纠 四大事项成关注重点
这下跟安卓真没区别!iOS 17确定支持第三方应用商店 苹果被逼
环球热门:12-240四摄8焦段!小米13 Ultra影像功能深度解析
李想吐槽变色天窗玻璃如同卫生间隐私膜 理想汽车坚持用电动遮阳帘
看点:学系统集成项目管理工程师(中项)系列09_收尾管理
全球观热点:索尼发布4K HDR旗舰监视器:双液晶面板 峰值亮度4000尼特
每日热文:GPT-4可能对经济领域的近期影响,以及远期对全球可能产生的深远影响。
天天百事通!去年我是怎么解决团队问题的
新日2022年净利同比暴增1326.25%!卖了257万辆电动自行车
焦点热文:在上海车展逛了两天 愣是找不出一辆值得写的油车!
世界今日报丨爷青回!电影《灌篮高手》今日上映:等了20多年的全国大赛开打
焦点快看:等等党赢了!华为Mate 50系列官方降价:最高便宜800元
AutoGPT是什么?超简单安装使用教程
今日精选:微信小程序、uniapp、vue生命周期钩子函数