为什么以下不起作用?
phrase.AddAll(new ICollection<Chunk>[] { noteChunk, noteAttributeChunk });
错误8无法将类型'iTextSharp.text.Chunk'隐式转换为'System.Collections.Generic.ICollection'。
好奇,
杆。
答案 0 :(得分:0)
您需要ICollection
的通用参数,例如ICollection<Chunk>
,但问题是ICollection
是接口而不是类。你应该这样做:
phrase.AddAll(new Chunk[] { noteChunk, noteAttributeChunk });