728x90
public void Start()
{
Action<string, int> printAction = (str, num) =>
{
print($"str: {str}, num: {num}");
}
printAction("yeeee",99);
}
728x90
'c#' 카테고리의 다른 글
String 스트링 Byte 변환 (0) | 2025.01.20 |
---|---|
JSON 객체 단위 파싱 (0) | 2024.12.26 |
문자열 노출되는 법 (feat. 이스케이프, 원시 문자열) (0) | 2024.09.10 |
람다식 Select로 리스트 데이터 여러개 추출 (0) | 2024.09.10 |
Math.Round(avg,MidpointRounding.AwayFromZero); (0) | 2024.08.28 |