#include "stdafx.h"
using namespace System;
using namespace System::Collections;
void main(){
Hashtable ^hash = gcnew Hashtable();
SortedList ^sort = gcnew SortedList();
array<String^>^ keys = gcnew array<String^> { "B", "A", "C", "D" };
array<String^>^ skeys = gcnew array<String^> { "A", "B", "C", "D" };
array<String^>^ values = gcnew array<String^> { "a", "b", "c", "d" };
for (int i = 0; i < keys->Length; i++)
{
hash->Add(keys[i], values[i]);
sort->Add(keys[i], values[i]);
}
Console::WriteLine("\nContains a Value 'a' and 'c'");
Console::WriteLine("{0}\t\t{1}", hash->ContainsValue("a"), sort->ContainsValue("a"));
Console::WriteLine("{0}\t\t{1}", hash->ContainsValue("c"), sort->ContainsValue("c"));
}
|