[C#] SelectMany 메서드 SelectMany 메서드?컬렉션 속성을 가지고 있는 객체가 있고, 자식 컬렉션의 각 항목을 하나씩 열거해야하는 경우 사용하는 메서드쉽게 설명하면 Collection안에 다른 Collection이 정의되어 있고, 이 중 Sub Collection의 데이터를 가져올때 사용하는 메서드이다. Select 메서드 Select 메서드는 객체에 담긴 데이터 중 원하는 값만 추출하여 새로운 형태의 컬렉션을 생성하는 메서드이다.아래의 예시는 Team 객체에서 name 값만 추출하여 새로운 컬렉션을 만든 것이다.class Program{ public class Team { public string name; public string[] players; } static vo.. 2025. 1. 7. [GodotEngine] Tutorial 2D Game - 7 [完] 해당 내용 출처 :) https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html 이전 내용:) https://twd0622.tistory.com/91 [GodotEngine] Tutorial 2D Game - 6해당 내용 출처 :) https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html 이전 내용:) https://twd0622.tistory.com/90 [GodotEngine] Tutorial 2D Game - 5해당 내용 출처 :) https://docs.godotengine.org/en/stable/getttwd0622.tisto.. 2025. 1. 2. [GodotEngine] Tutorial 2D Game - 6 해당 내용 출처 :) https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html 이전 내용:) https://twd0622.tistory.com/90 [GodotEngine] Tutorial 2D Game - 5해당 내용 출처 :) https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html 이전 내용:) https://twd0622.tistory.com/89 [GodotEngine] 2D Game Tutorial - 4해당 내용 출처 :) https://docs.godotengine.org/en/stable/getttwd0622.tisto.. 2024. 12. 27. [GodotEngine] Tutorial 2D Game - 5 해당 내용 출처 :) https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html 이전 내용:) https://twd0622.tistory.com/89 [GodotEngine] 2D Game Tutorial - 4해당 내용 출처 :) https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html 이전 내용:) https://twd0622.tistory.com/86 [GodotEngine] 2D Game Tutorial - 3해당 내용 출처 :) https://docs.godotengine.org/en/stable/getttwd0622.tisto.. 2024. 12. 27. [GodotEngine] Tutorial 2D Game - 4 해당 내용 출처 :) https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html 이전 내용:) https://twd0622.tistory.com/86 [GodotEngine] Tutorial 2D Game - 3해당 내용 출처 :) https://docs.godotengine.org/en/stable/getting_started/first_2d_game/index.html 이전 내용:) https://twd0622.tistory.com/81 [GodotEngine] 2D Game Tutorial - 2해당 내용 출처 :) https://docs.godotengine.org/en/stable/getttwd0622.tisto.. 2024. 12. 19. [C#] OfType<T>() vs CAST<T>() Enumerable.OfType()시퀀스 내의 형식과 일치하는 요소만 반환, 필터 기능이라고 보면됨일치하지 않는 요소가 있어도 예외를 발생 하지 않음object[] arr = { 1, "2", 3, "4", 5 };var ofTypeArr = arr.OfType();Console.WriteLine(string.Join(", ", ofTypeArr)); // 1, 3, 5int와 string 속성이 섞인 배열에서 int타입만 필터링 되었다.Enumerable.Cast() 시퀀스 내의 모든 요소의 형식을 타입으로 변환 시도만약 형 변환이 되지 않는 요소가 있을 경우 InvalidCastException 예외 발생 object[] arr = { 1, "2", 3, "4", 5 };var castArr = ar.. 2024. 12. 19. 이전 1 2 3 4 ··· 15 다음