C2660 error on VC++ .NET
I am passing parameters from VC++ .NET to and from C#.NET.
I am getting an error on the VC++.NET side, which says
c:\Documents and
Settings\karthik\Desktop\Research\ManufAgTestProjekt\ASAP_MAS_Extension\MAS_Extension.cxx(483): error C2660: 'InterfaceProtocol::InterfaceProtocol::GetNextJob' : function does not take 3 arguments
The code for calling the method is
Code:
PtrReference->MethodA(IntegerA, StringA, PointerA);
On C# side, the method is defined as:
Code:
public void MethodA( int IntegerA, string stringA, string PointerName, ref string PointerA)
I need to pass IntegerA and StringA to C# and return the value to PointerA onthe VC++ .NET.
How do I go about it? I would appreciate any tips/suggestions!!! and BTW.. I am a novice to .NET and programming concepts
Thanks a much!

