within a windows forms class (form1) I declared a cliext vector of vectors of strings with
cliext::vector<cliext::vector<String^>^> myvector;
. Then, within a function in that same class I tried to push back a vector of strings in myvector but it resulted in an error. I attempted to push back the vector of vectors by using
myvector->push_back(cliext::vector<String^>());
. I can't figure out what I'm doing wrong here. I also tried to initialize myvector using
cliext::vector<cliext::vector<String^>^> myvector = gcnew cliext::vector<cliext::vector<String^>>;
within the function in the form1 class but this did not help. Debugging tells me that the vector type does not have an overloaded "->" operator. I know what an overloaded operator is but I don't know what to make of this.
If I completely missed the protocol of how to enter code in this forum please let me know, this is my first post:)