public string[] Enumerate(DeviceEnumeration type)
 {
     using (var result = deviceManager_enumerate(handle, type))
     {
         return(result.ToStrings());
     }
 }
 private static extern WrapStringVector deviceManager_enumerate(IntPtr dm, DeviceEnumeration type);