Write a program to filter distinct items from the array
//Rextester.Program.Main is the entry point for your code. Don't change it.//Microsoft (R) Visual C# Compiler version 2.9.0.63208 (958f2354)usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text.RegularExpressions;
namespaceRextester
{
publicclassProgram
{
publicstaticvoidMain(string[] args)
{
//Write a program to filter distinct items from the array//array = [1,4,2,5,4,2,5,1,6,2,5,3,8,9,6]Console.WriteLine("Hello, world!");
}
}
}