1

Is it possible, and does anyone have an example of how you might call upon a .NET dll from within Google SketchUp Ruby interface?

Kratz
  • 4,280
  • 3
  • 32
  • 55
  • possible duplicate of [Can Ruby import a .NET dll ?](http://stackoverflow.com/questions/265879/can-ruby-import-a-net-dll) – Albin Sunnanbo Feb 21 '11 at 21:55
  • 1
    I don't think its a duplicate, the other topic is about ruby in general. This is about the Google SketchUp Ruby script API, specificly, and whats capable from withine that running environment. – Kratz Feb 22 '11 at 13:44

1 Answers1

0

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

ice.huli
  • 51
  • 4