Hello. I have created a small C# class in a library.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace helloWorldLib
{
public class Greeter
{
public string SayHelloWorld(string name)
{
return "Hello world " + name;
}
}
}
The library is located in
C:\Documents and Settings\myUser\My Documents\Visual Studio 2008\Projects\Project1\helloWorldLib\bin\Debug\helloWorldLib.dll
How would you call SayHelloWorld from an IronRuby script?
I know this seems very simple, but I cannot seem to find a consistent code example after much research.
Thanks so much!