How to match microphone and camera?

1.Get all cameras:

               if (item.FQID.FolderType == [FolderType.No](https://FolderType.No) && item.FQID.Kind == Kind.Camera)

               {

                   lstCamera.Add(item);

               }

2.Get all microphone

               if (item.FQID.FolderType == [FolderType.No](https://FolderType.No) && item.FQID.Kind == Kind.Microphone)

               {

                   lstMic.Add(item);

               }

How to match cameras of lstCamera[] and microphones of lstMic[]

For each camera you can find related items like microphone, speaker and others. See it illustrated in the Config Access via SDK sample.