.Item 属性 of readOnlycollection 不工作
.Item property of readOnlycollection doesn't work
我正在 Python 中使用 CPython3.4 制作一个项目。我导入了一个包含 ReadOnlyCollection 的 dll。我怎样才能从那个列表中得到一个项目(在索引处)?我已经尝试使用 .Item(index) 和 .Items 但它说:
"the object has no attribute "项目"
但是当我使用 .Count 时,它确实会给我计数。文档说我可以在这个对象上同时使用两者。 https://msdn.microsoft.com/en-us/library/ms132474(v=vs.110).aspx dll写在VB.net.
谁能帮我从 ReadOnlyCollection 中取出一项?
这可能吗?
for i in ReadOnlyCollection:
i.doSomething()
如果可能的话,您可以在此循环中找到您的对象
我正在 Python 中使用 CPython3.4 制作一个项目。我导入了一个包含 ReadOnlyCollection 的 dll。我怎样才能从那个列表中得到一个项目(在索引处)?我已经尝试使用 .Item(index) 和 .Items 但它说:
"the object has no attribute "项目"
但是当我使用 .Count 时,它确实会给我计数。文档说我可以在这个对象上同时使用两者。 https://msdn.microsoft.com/en-us/library/ms132474(v=vs.110).aspx dll写在VB.net.
谁能帮我从 ReadOnlyCollection 中取出一项?
这可能吗?
for i in ReadOnlyCollection:
i.doSomething()
如果可能的话,您可以在此循环中找到您的对象