I came across a DbParameterCollection object, which should have an “Item” property inherited from IList, but IntelliSense does not show this object has the Item property. What’s wrong here?
I came across a DbParameterCollection object, which should have an Item property inherited from
Share
From MSDN:
In other words, it’s a C# syntax thing. Just use
list[index]instead oflist.Item(index)and you’re set.