System::Collections::Generic::List::FindIndex method

List::FindIndex(int, int, System::Predicate<T>) method

विशिष्ट प्रेडिकेट को पूरा करने वाले तत्व की तलाश करता है।

int System::Collections::Generic::List<T>::FindIndex(int startIndex, int count, System::Predicate<T> match)
पैरामीटरप्रकारविवरण
startIndexintखोज शुरू करने के लिए सूचकांक।
countintदेखने के लिए तत्वों की संख्या।
matchSystem::Predicate<T>Predicate का उपयोग तत्वों को जाँचने के लिए।

ReturnValue

मिलते हुए तत्व का सूचकांक या यदि न मिले तो -1।

संबंधित देखें

List::FindIndex(int, System::Predicate<T>) method

विशिष्ट प्रेडिकेट को पूरा करने वाले तत्व की तलाश करता है।

int System::Collections::Generic::List<T>::FindIndex(int startIndex, System::Predicate<T> match)
पैरामीटरप्रकारविवरण
startIndexintखोज शुरू करने के लिए सूचकांक।
matchSystem::Predicate<T>Predicate का उपयोग तत्वों को जाँचने के लिए।

ReturnValue

मिलते हुए तत्व का सूचकांक या यदि न मिले तो -1।

संबंधित देखें

List::FindIndex(System::Predicate<T>) method

विशिष्ट प्रेडिकेट को पूरा करने वाले तत्व की तलाश करता है।

int System::Collections::Generic::List<T>::FindIndex(System::Predicate<T> match)
पैरामीटरप्रकारविवरण
matchSystem::Predicate<T>Predicate का उपयोग तत्वों को जाँचने के लिए।

ReturnValue

मिलते हुए तत्व का सूचकांक या यदि न मिले तो -1।

संबंधित देखें