1

我正在尝试使用 Ruby 映射我从 .net 使用的功能

如何像在 Ruby 中一样创建 c# .net 通用列表?

public class ClientList : List<Client> { }
4

2 回答 2

4

Ruby 是一种非常动态的语言。它没有 C# 中的强类型,因此它没有(或需要泛型)。

您可以像这样在 Ruby 中创建一个列表:

list = []

http://langref.org/ruby/lists

于 2012-10-17T16:56:07.670 回答
1
class A
end

list = [] # create
list << A.new # add

像这样的东西?这里列表是动态的,您可以向其中添加任何对象。

于 2012-10-17T17:03:39.270 回答