Mega Code Archive

 
Categories / Visual C++ .NET / Collections
 

Get key and value from a NameValueCollection

#include "stdafx.h" #using <system.dll> using namespace System; using namespace System::Collections::Specialized; void main() {     NameValueCollection^ nvCol = gcnew NameValueCollection();     nvCol->Add(nullptr, "void");     nvCol->Set("A", "a");     nvCol->Add("B", "b1");     nvCol->Add("B", "b2");     nvCol->Add("B", "b3");     nvCol->Add("C", "c1");     nvCol->Add("C", "c2");     nvCol->Add("C", "c3");     array<String^>^ keys = nvCol->AllKeys;     Console::WriteLine("Key @[1]:\t{0}", nvCol->GetKey(1));     Console::WriteLine("Values @[3]:\t{0}", nvCol[3]); }