In C#, say I have a class called Note with three String member variables.
public class Note { public string Title; public string Author; public s
Notes.Select(x => x.Author).Distinct();
This will return a sequence (IEnumerable) of Author values -- one per unique value.
IEnumerable
Author