번역/C# Notes for Professionals
49.3: 명명된 인자 (Named Argument) 를 사용하여 코드를 보다 명확하게 작성하기
노초코
2022. 12. 1. 23:07
Section 49.3: 명명된 인자 (Named Argument) 를 사용하여 코드를 보다 명확하게 작성하기
다음과 같은 간단한 클래스가 있는 경우를 생각해 본다:
class SmsUtil {
public bool SendMessage(string from, string to, string message, int retryCount, object attachment)
{
// 추가적인 코드 부분
}
}
C# 3.0 이전 버전에서의 위 메소드 호출 코드는 다음과 같다:
var result = SmsUtil.SendMessage("Mehran", "Maryam", "Hello there!", 12, null);
명명된 인자 (Named Argument) 를 사용하면, 아래와 같이 보다 명확한 코드를 통해 메소드를 호출할 수 있다:
var result = SmsUtil.SendMessage(
from: "Mehran",
to: "Maryam",
message "Hello there!",
retryCount: 12,
attachment: null);
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
[출처] https://books.goalkicker.com/CSharpBook/
반응형