通过 Google SketchUp Ruby 脚本调用 .NET dll
有可能吗?有人有如何从 Google SketchUp Ruby 界面中调用 .NET dll 的示例吗?
Is it possible, and does anyone have an example of how you might call upon a .NET dll from within Google SketchUp Ruby interface?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。有两种方法。
1. 使用 C++/cli 构建 ruby 扩展来调用 .NET 内容。
2.直接使用c#构建一个ruby扩展,然后你可以轻松调用任何.NET东西。
您可以在此处找到有关使用 C# 构建 ruby 扩展的简单示例 https://bitbucket.org/icehuli/ sucsexttutorial/wiki/Home
Yes, it is possible. There are two ways.
1. Build a ruby extension using C++/cli to call .NET stuff.
2. Build a ruby extension directly using c#, then you can easy call any .NET stuff.
You can find a simple example about build ruby extension using c# here https://bitbucket.org/icehuli/sucsexttutorial/wiki/Home