在調用第三方庫的時候,有這麼一個泛型參數,以下圖:spa
按照經驗,使用兩個List嵌套聲明變量便可:blog
IList<IList<AnnotatedPoint2D>> outImageGrid2 = new List<List<AnnotatedPoint2D>>();編譯
//這裏提示編譯錯誤:沒法隱式轉換。泛型
最後,在stackflow找到一個解決方法:變量
IList<IList<AnnotatedPoint2D>> outImageGrid2 = new List<IList<AnnotatedPoint2D>>();List