1
我想從IronRuby腳本調用一個C#方法來產生Ruby散列。我試過字典,但保持原樣。.Net對象對應於IronRuby散列
public Dictionary<string, string> GetHash()
{
Dictionary<string, string> hash = new Dictionary<string, string>();
hash.Add("a", "1");
hash.Add("b", "2");
return hash;
}
我希望能夠用它在我的IronRuby腳本作爲哈希
myHash = scopeObj.GetHash()
myHash.each{ |k,v|
print("#{k}=#{v}")
}
其結果是:
[a, 1]=
[b, 2]=