How to select unique names from a List using LINQ in C#?

Below is a sample code snippet demonstrating on how to get unique or distinct names from a list in C# using LINQ query.

How to select unique names from a List using LINQ in C#?

using System;

using System.Collections.Generic;

using System.Data;

using System.Linq;

namespace AbundantCode

{

internal class Program

{

//How to select unique names from a List using LINQ in C#?

private static void Main(string[] args)

{

List<string> Names = new List<string>();

Names.Add("Abundantcode.com");

Names.Add("TestCode.com");

Names.Add("Abundantcode.com");

string[] AbundantArray = new string[] { "Abundantcode", "is", "a sourcecode site" };

var result = (from m in Names

select m).Distinct().ToList();

foreach(var item in result)

Console.WriteLine(item);

Console.ReadLine();

}

}

}