How to get the closest number from a List<int> with LINQ?

How to get the closest number from a List&lt;int&gt; with LINQ? For example: List&lt;int&gt; numbers = new List&lt;int&gt;(); numbers.Add(2); numbers.Add(5); numbers.Add(7); numbers.Add(10) I n...