I have a class that is using a managed object to get information from a database. Specifically OracleClient and DataTables/DataRows. I am able to get the information through this class ok, but I must pass it back to a C application that has an unmanaged C++ interface between the two.
Long story short, I need to convert a managed System::String _gc * to a char * to pass back. Is there a way to do this?
Long story short, I need to convert a managed System::String _gc * to a char * to pass back. Is there a way to do this?