K
kelvin.koogan
In VS2005 I want to declare function that returns an array, e.g.
array<Byte> ^GetData();
However the function is defined in an interface which has to compile
in VS2003 which doesn't support array.
How can I define a function which returns a pointer to an array so it
compiles in VS2000 but has the prototype given above in VS2005.
TIA,
KK
array<Byte> ^GetData();
However the function is defined in an interface which has to compile
in VS2003 which doesn't support array.
How can I define a function which returns a pointer to an array so it
compiles in VS2000 but has the prototype given above in VS2005.
TIA,
KK