我在visual studio 2010 c#下有一个windows应用程序
我创建了一个book
具有 3 个字段(、、、name
)writingDate
名称的author
类
我创建另一个名称book
为book
( List<book>
)的类
当我检索books
类数据时,我需要知道它的字节大小
我怎样才能做到这一点?
注意:我尝试Marshal.SizeOf(books)
但发生此错误
"Type 'System.Collections.Generic.List`1[books]' cannot be marshaled as
an unmanaged structure; no meaningful size or offset can be computed."
有什么帮助吗?