using System.Collections.Generic;
public static void Main()
List<int> intList = new List<int>{4545,4,5,-6,980087,56};
Console.WriteLine(GetLowestValue(intList));
public static int GetLowestValue(List<int> inputValues)
return inputValues.AsQueryable().Min();