如何向 ac# IList添加字符串来自铁红宝石?

发布于 2024-10-23 23:11:08 字数 633 浏览 0 评论 0原文

当我尝试使用 ruby​​ 脚本修改 C# 字符串列表时,出现以下异常。

未处理的异常:System.ArgumentException:值“Scott”不是“System.String”类型,不能在此泛型集合中使用。

时间:2019-03-17标签:c#

IList<string> names = new List<string>();
names.Add("scott");
names.Add("jason");

ScriptRuntime runtime = IronRuby.Ruby.CreateRuntime();
ScriptEngine engine = runtime.GetEngine("IronRuby");
ScriptScope scope = engine.CreateScope();
scope.SetVariable("names", names);
engine.ExecuteFile("test.rb", scope);

foreach (var name in names)
{
   Console.WriteLine(name);
}

ruby

names.map! { |item| item.capitalize}

I get the following exception when I try to use a ruby script to modify a list of c# strings.

Unhandled Exception: System.ArgumentException: The value "Scott" is not of type "System.String" and cannot be used in this generic collection.

c#

IList<string> names = new List<string>();
names.Add("scott");
names.Add("jason");

ScriptRuntime runtime = IronRuby.Ruby.CreateRuntime();
ScriptEngine engine = runtime.GetEngine("IronRuby");
ScriptScope scope = engine.CreateScope();
scope.SetVariable("names", names);
engine.ExecuteFile("test.rb", scope);

foreach (var name in names)
{
   Console.WriteLine(name);
}

ruby

names.map! { |item| item.capitalize}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半葬歌 2024-10-30 23:11:08

to_clr_string 添加到 ruby​​ 代码中:

names.map! { |item| item.capitalize.to_clr_string }

Add to_clr_string to the ruby code:

names.map! { |item| item.capitalize.to_clr_string }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文