using System;
using System.Collections.Generic;
public class Program
{
public static void Main(string[] args)
{
ISet<int> set1 = new HashSet<int>() {1, 2, 3, 4, 5, 6};
ISet<int> set2 = new HashSet<int>() {2, 4};
bool result = set2.IsSubsetOf(set1);
Console.WriteLine(result);
}
}
/*
run:
True
*/