P
phrankbooth
I keep getting a "Member not found." error when invoking a method that
I know is there.
Here is the method in the DLL in which I'm calling it:
public virtual new System.String GetLDetls (System.String theStr1,
System.String theStr2, System.Boolean isTF)
Here is the invoke call in my code:
result = theCfgType.InvokeMember (aMethod, BindingFlags.InvokeMethod,
null, theTargetObj, aArgs);
Is it possible that an older version of the DLL is stuck in the GAC?
Although I can't see it there.
I've tried other binding flags to no avail.
Is there something I'm missing??
Any help appreciated, thanks!!
--PhB
I know is there.
Here is the method in the DLL in which I'm calling it:
public virtual new System.String GetLDetls (System.String theStr1,
System.String theStr2, System.Boolean isTF)
Here is the invoke call in my code:
result = theCfgType.InvokeMember (aMethod, BindingFlags.InvokeMethod,
null, theTargetObj, aArgs);
Is it possible that an older version of the DLL is stuck in the GAC?
Although I can't see it there.
I've tried other binding flags to no avail.
Is there something I'm missing??
Any help appreciated, thanks!!
--PhB