티스토리 뷰
728x90
반응형
임시 리스트 만들기(temporary list)
코드를 작성하다 보면 클래스(class) 형식이 아닌 임시(temporary) 형식를 가진 List가 필요할때가 있다.
상황적 예를 든다면, 다른 코드에서는 참조되지 않고
한번 사용 후 폐기 되는 List 같은 경우 클래스(class) 형식 만들 필요가 없다.
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// Creating a temporary list with anonymous types
var tempList = new List<object>
{
new { Name = "John", Age = 30 },
new { Name = "Jane", Age = 25 }
};
// Iterating through the list
foreach (var person in tempList)
{
Console.WriteLine($"Name: {person.Name}, Age: {person.Age}");
}
}
}
비고
임시(temporary) 형식를 가진 List에서 특정 값 식별하기
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// Creating a list of objects
List<object> tempList = new List<object>
{
new { Name = "John", Age = 30 },
new { Name = "Jane", Age = 25 },
new { Name = "Joe", Age = 35 }
};
// Using the Find method to find the first object where Name is "Jane"
var result = tempList.Find(item =>
{
// Cast item to anonymous type
var person = item as dynamic;
return person.Name == "Jane";
});
if (result != null)
{
// Cast result to anonymous type to access properties
var person = result as dynamic;
Console.WriteLine($"Found: Name = {person.Name}, Age = {person.Age}");
}
else
{
Console.WriteLine("No matching item found.");
}
}
}
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 스프링 프레임워크(spring framewordk)
- 문자 자르기
- system.io
- 스프링 시큐리티(spring security)-http basic 인증
- MainActor
- 람다식(lambda expression)
- REST API
- jsp 오픈 소스
- 메이븐(maven)
- java-개발 환경 설정하기
- jstl(java standard tag library)
- java 키워드 정리
- error-java
- .submit()
- In App Purchase
- 상품 등록
- await
- 특정 문자를 기준으로 자르기
- java web-mvc
- React
- 스프링 시큐리티(spring security)
- 스프링 프레임워크(spring framework)
- 인텔리제이(intellij)
- jstl(java standard tag library)-core
- 진수 변환
- System.Diagnostics
- 제품 등록
- 표현 언어(expression language)
- java.sql
- nl2br
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함