Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created November 7, 2022 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/04dcac914333fcac3988c81f36e7ca51 to your computer and use it in GitHub Desktop.
Save IntegerMan/04dcac914333fcac3988c81f36e7ca51 to your computer and use it in GitHub Desktop.
public int FindLargestNumber(List<int> numbers)
{
int largest = int.MinValue;
if (numbers != null)
{
foreach (int num in numbers)
{
if (largest < num)
{
largest = num;
}
}
}
return largest;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment