Expose Rows in a C++ .NET Typed Dataset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In C# this works find, I can get the data from the row.
string strFirstName = clientSet1.Clients[0].ClientFirstName;

How would I do this in C++ .NET? I can't seem to work my way into the data.
strFirstName = clientSet1->Clients ?
 
Back
Top