... | ... | @@ -591,18 +591,12 @@ class LambdaScope |
|
|
```
|
|
|
|
|
|
|
|
|
7. **IEnumerable<T> 변수를 foreach 키워드로 순회하도록 변경 바랍니다.**
|
|
|
Func<string, string> selector = (string s) => s.ToUpper();
|
|
|
|
|
|
string[] words = {"orange", "apple", "Article", "elephant", "korea", "komani" };
|
|
|
|
|
|
IEnumerable<string> aWords = words.Select(selector);
|
|
|
|
|
|
foreach(string word in aWords)
|
|
|
Console.WriteLine(word);
|
|
|
7. **IEnumerable<T> 변수를 foreach 키워드로 순회하도록 변경 바랍니다.**
|
|
|
|
|
|
```c#
|
|
|
|
|
|
|
|
|
|
|
|
출처: http://it-jerryfamily.tistory.com/entry/dasdasd [IT 이야기]
|
|
|
8. **Where().FirstOrDefault() 하지 말고 곧장 FirstOrDefault() 할 수 없나요?**
|
|
|
9. **Network endian 스터디 보강**
|
|
|
10. **ContinueWhenAny 메소드 스터디 보강**
|
... | ... | |