Last active
December 16, 2018 12:16
-
-
Save MarcBruins/06535a6d76d3253a0cb4a41bf9eced9f to your computer and use it in GitHub Desktop.
Returning null
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static IReadOnlyCollection<string> FirstPopulatedList(List<string> list1, List<string> list2) | |
{ | |
if (HasElements(list1)) | |
return list1; | |
if (HasElements(list2)) | |
return list2; | |
return null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment