Tagged Questions
0
votes
1answer
55 views
pointer to a data member in C++/CLI
How can I make a pointer to a data member in C++/CLI
for example
ref class team
{
List<teamMember^> members;
teamMember^ leader; //the aim is to make it a pointer to an element in the ...
0
votes
2answers
485 views
C++/CLI Pointer to Member
What are the various options to implement a pointer-to-member construct in C++/CLI?
I have implemented some 2D geometry algorithms which perform some actions based on X and Y co-ordinates. I find ...