Click here to Skip to main content
15,893,668 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
C++


in the ATL dll project there is one function with BYTE* Parameter.

C++
STDMETHODIMP CMSDllServer::sum22(BYTE* aa,SHORT len)
{
	AFX_MANAGE_STATE(AfxGetStaticModuleState());

	
	for(int i=1;i<len;i++)
	{
		aa[i]=i;
	}
  return S_OK;
}

when call this function in a C# windows application this work correctly and array values returned to truth

C#
byte[] Packet = new byte[5];

	dllServer.sum22(ref Packet[0],5);

       //Result values
         1,2,3,4,5




the same function in a webservice returned to only first index array and exist very big problem

C#
<pre>byte[] Packet = new byte[5];
	dllServer.sum22(ref Packet[0],5);

       //Result values
         1,0,0,0,0


please help me

thanx
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900