Есть ли что-либо в возвращаемом объекте из Items.Find (), которое указывает положение указанного объекта в коллекции, для которой вызывался Find ()?
Outlook.Application App = new Outlook.Application();
Outlook.MAPIFolder contactFolder = App.Session.GetDefaultFolder(
Outlook.OlDefaultFolders.olFolderContacts);
Outlook.Items contactItems = contactFolder.Items;
Outlook.ContactItem matchItem = contactItems.Find(
"@SQL=urn:schemas:contacts:cn LIKE '" + searchString + "%'");
На данный момент мне нужен индекс matchItem
в коллекции contactItems
. Это возможно?