Hi,
This error means that your methods from class are not visible for COM (not exposed in interface).
First check attributes on your class DataRet.RetSet
You should have something similar to code below:
[Guid("AE79DA87-B7D0-4f2f-9A2F-C3E50D27949E"),
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true)]
class RetSet
.......
Then make sure that you really have method getList insid with public visibility.
You can also use ClassInterfaceType.None and inherit your class from interface, then result will be the same.
For more details refer to those attributes reference.
Greets