Click here to Skip to main content
15,886,094 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i want to use this method from a dll ,the method has argument like this:
EpcMultiTagIdentify( ref byte[,]) but idont know how to pass variable to this method.
please help me.
Posted
Comments
Sergey Alexandrovich Kryukov 16-Feb-13 19:24pm    
It is a .NET assembly or some other DLL?
—SA

I can give you somethin even better: http://subversion.assembla.com/svn/rsd_grp3/RFIDDemo/RFIDdemo/RFIDdemo/RFIDReader.cs[^]
...but you could have found it yourself too...
 
Share this answer
 
Hi,

You just use it the same way as other parameter, but the as the a method uses a reference parameter, it means that changes made to the parameter in the method is affecting the variable that was passed.

see here:
http://msdn.microsoft.com/en-us/library/14akc2c7.aspx[^]

Valery.
 
Share this answer
 

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