Add to NameValueCollection : NameValueCollection « Collections « Visual C++ .NET






Add to 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");

}

   
  








Related examples in the same category

1.Get all keys from NameValueCollection
2.Get values by key in NameValueCollection
3.Get key and value from a NameValueCollection
4.Remove by key
5.Adding value to NameValueCollection by indexer