Using Linq to get the last N elements of a collection? csharp

Code Example - Using Linq to get the last N elements of a collection? csharp

                
                        List<string> mystring = new List<string>() { "one", "two", "three" }; 
mystring = Enumerable.Reverse(mystring).Take(2).Reverse().ToList();