gpt4 book ai didi

c# - 使用 CSharpScript 创建一个函数并执行它

转载 作者:太空宇宙 更新时间:2023-11-03 22:53:19 24 4
gpt4 key购买 nike

是否可以将函数定义为脚本然后运行它?

我正在努力实现这样的目标:

//defined in a namespace
public class Params{public string input { get; set; }}


string script = "string TryToUpper(string input){ return input.ToUpper(); }";
var v = CSharpScript.Create(script, globalsType: typeof(Params) );

// what to do to execute TryToUpper and get "GIUSEPPE" back?
var val = v.RunAsync(???);

最佳答案

您必须在该脚本中做两件事:首先,定义函数,然后实际运行它并返回它的结果。像这样:

public class Params
{
public string input;
}

Params globals = new Params();
globals.input = "some lowercase text";

string script = "string TryUpper(string str) { return str.ToUpper(); } return TryUpper(input);";

string result = await CSharpScript.EvaluateAsync<string>(script, globals: globals);

关于c# - 使用 CSharpScript 创建一个函数并执行它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46524379/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com