using Ruby.Runtime; // Initialize the runtime Ruby.Init(); // Create a new Ruby object dynamic rubyObject = Ruby.CreateObject("MyRubyClass", 42); // Call a method on the Ruby object var result = rubyObject.MyRubyMethod("foo", "bar"); // Convert the result to a C# object string csharpResult = (string)Ruby.ToClr(result);In this example, we're initializing the Ruby runtime and creating a new Ruby object called "MyRubyClass". We then call a method on the Ruby object and convert the result to a C# object. This package library can be determined by its namespace "Ruby.Runtime".