How to pass reference
-
Can I please help to know, how to pass a reference from your command class to a windows user ? Can any body give me a code? Thanks Kedie
-
Can I please help to know, how to pass a reference from your command class to a windows user ? Can any body give me a code? Thanks Kedie
What do you mean ? Any reference type ( i.e. a class ) is passed by reference already. What is your 'command class' ? How do you want to 'pass a reference to a windows user' ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Can I please help to know, how to pass a reference from your command class to a windows user ? Can any body give me a code? Thanks Kedie
This may not help but if you mean passing arguments by reference then I found I had to put the keyword "ref" in front of the argument - both in the definition and the use. i.e. MyFunc(ref int argument) & MyRef(ref argument). I hope this is of some help.
Ted Edwards