c# reverse list

C#
List<string> authors = new List<string>();
authors.Add("Your dad")
authors.Add("Your mum")
authors.Reverse();
Source

Also in C#: