AVL tree/Managed C++: Difference between revisions

Line 2,249:
int main(array<System::String ^> ^args)
{
Set<int>^ S = gcnew Set<int>(1, 3, 5 , 6, 7, 9);
Set<int>^ T = gcnew Set<int>(2, 4, 6 , 7, 8, 9);
Console::WriteLine(S.ToString());
Set<int>^ U = S | T;
Console::WriteLine(S.ToString() + " | " + T + " == " + U);
return 0;
}