7

在以下代码中:

        private static void Main(string[] args)
        {            
            var listy = new List<DateTime> { DateTime.Now };
            MyMethod(listy);
        }

        static void MyMethod<T>(List<T> myList)
        {
            // put breakpoint here
        }

如果我中断调试器,在“myList”上打开 QuickWatch,我看到:

myList
   [0]
   Raw View

如果我选择“[0]”节点并单击 Add Watch,则添加到 Watch 的表达式:

(new System.Collections.Generic.Mscorlib_CollectionDebugView<System.DateTime>(myList)).Items[0]

这个表达式似乎是正确的,但是,监视窗口显示以下错误:

'System.Collections.Generic.Mscorlib_CollectionDebugView.Mscorlib_CollectionDebugView(System.Collections.Generic.ICollection)' 的最佳重载方法匹配有一些无效参数

这似乎是调试器中的一个错误。为什么会这样?它是否记录在任何地方?

4

2 回答 2

1

这看起来像是 C# 表达式求值器的重载解析逻辑中的一个错误。调用泛型类型构造函数和传递绑定泛型的组合似乎是关键。删除其中任何一个似乎都可以解决问题。例如,您可以通过显式转换myList来调用提到的表达式ICollection<DateTime>(这并不能解决我尝试过的所有情况)

这是我为缩小问题范围而编写的示例程序

class C<T> {
    public C(ICollection<T> collection) {

    }
}

static void Example<T>(ICollection<T> collection) {
}

在同一休息时间,您可以尝试以下评估

  • Example(myList)- 工作没有错误
  • new C<DateTime>(myList)- 失败并出现同样的错误

在这一点上,我认为您应该在Connect上提交错误。这绝对是一个错误(类似的代码在 VB.Net 中运行良好)

于 2011-08-18T18:22:12.040 回答
0

看起来是这样的。我已经能够复制错误。Mscorlib_CollectionDebugView<T>只有一个构造函数接受ICollection<T>List<T>实现ICollection<T>. 此外,显式转换为ICollection<T>作品:

(new System.Collections.Generic.Mscorlib_CollectionDebugView<System.DateTime>((ICollection<DateTime>)myList)).Items[0]
于 2011-08-18T14:46:19.163 回答