2
我一直在使用SharePoint對象模型,並得到了這個問題。SPListItem [「property」]和SPListItem.Properties [「property」]之間的區別是什麼?
我一直在使用SharePoint對象模型,並得到了這個問題。SPListItem [「property」]和SPListItem.Properties [「property」]之間的區別是什麼?
aListItem [ 「屬性」]是不正確的 這是aListItem [ 「字段名」]
所以:
aListItem["property"]
會得到一個名爲 「屬性」
的字段的值和
aListitem.Properties["property"]
將獲得屬性「Property」的值(例如List )