无法将List <char>作为参数传递给List <object>?</object> </char>

时间:2015-04-17 16:10:54

标签: c# object char boxing

所以我的代码中有一个方法,其中一个参数是IEnumerable<object>。为清楚起见,这将是该示例的唯一参数。我最初用一个List<string>的变量调用它,但后来意识到我只需要那些char s并将变量的签名更改为List<char>。然后我在程序中收到错误说:

Cannot convert source type 'System.Collections.Generic.List<char>'
to target type 'System.Collections.Generic.IEnumerable<object>'.

在代码中:

// This is the example of my method
private void ConversionExample(IEnumerable<object> objs)
{
    ...
}

// here is another method that will call this method.
private void OtherMethod()
{
    var strings = new List<string>();
    // This call works fine
    ConversionExample(strings);

    var chars = new List<char>();
    // This will blow up
    ConverstionExample(chars);
}

我可能想到为什么第一个会起作用的唯一原因,但第二个赢得的原因是因为List<char>()可以转换为string?我并不认为这就是它,但这是我唯一可以做出的关于为什么它不起作用的长期猜测。

2 个答案:

答案 0 :(得分:6)

通用参数协方差不支持值类型;它仅在泛型参数是引用类型时才有效。

您可以ConversionExample通用并接受IEnumerable<T>而不是IEnumerable<object>,或使用Cast<object>List<char>转换为{{1} }}

答案 1 :(得分:0)

这将是我的解决方案:

// This is the example of my method
private void ConversionExample<T>(IEnumerable<T> objs)
{
    ...
}

// here is another method that will call this method.
private void OtherMethod()
{
    var strings = new List<string>();
    // This call works fine
    ConversionExample<string>(strings);

    var chars = new List<char>();
    // This should work now
    ConversionExample<char>(chars);
}