LINQ 제한 연산자 (Where)
ProductList 와 CusomerList 는 아래 sample 참고 https://github.com/dotnet/try-samples/tree/main/101-linq-samples/src/DataSources GitHub - dotnet/try-samples Contribute to dotnet/try-samples development by creating an account on GitHub. github.com Where 입력 시퀀스를 제한하거나 필터링하여 출력 시퀀스를 생성 5보다 작은 수 가져오기 int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; var lowNums = from num in numbers where num < 5 select nu..
2022.02.01