I want to pass an int list from C # to a dll written in vb6. In vb6, a function prototype is as follows:
Public Function FamIdentify(agentList As Collection, strName As String, strIdentifyTemplate As String, strIP As String) As Boolean
From C #, I call this function. As below:
public Boolean IdentifyFinger(String name, String SampleModel, String REMOTE_ADDR) { List<int> agentList = new List<int>();
For this coding, I ran into this error
cannot convert from system.collections.generic.list to string to Vba.collections
How to transfer a list from C # to vb6? Please help me.
source share