OpenMetaverse Protocol Library Developers API Documentation
FindAll Method (match)
NamespacesOpenMetaverse ObservableDictionary < (Of < ( <' TKey, TValue > ) > ) > FindAll(Predicate < (Of < <' ( TKey > ) > > ) )
Find All items in an
Declaration Syntax
C#
public 
List<TKey> 
FindAll(
        
Predicate<TKey> 
match
)
Parameters
match ( Predicate < (Of < ( <' TKey > ) > ) > )
return matching keys.
Return Value
a containing found keys.
Examples
Find All keys which also exist in another dictionary
  Copy imageCopy
List<UUID> matches = myDict.FindAll(
        
delegate(UUID id) {
            
return
myOtherDict.ContainsKey(id);
        }
   );
See Also
ObservableDictionary
List

Assembly: OpenMetaverse(Module: OpenMetaverse.dll) Version: 0.9.3.3318 (0.9.3.3318)