4
我在庫中創建了一個小的C#類。從IronRuby調用C#
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;
}
}
}
該庫位於
C:\ Documents和Settings \ MYUSER \我的文檔\ Visual Studio 2008的\項目\ PROJECT1 \ helloWorldLib \ BIN \調試\ helloWorldLib.dll
如何你會從IronRuby腳本調用SayHelloWorld嗎?
我知道這看起來很簡單,但我似乎無法在大量研究後找到一致的代碼示例。
非常感謝!