일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- commit
- Binding
- dotNET
- log
- File
- nullable
- Process
- windows10
- Microsoft
- Github
- mysql
- tls
- Visual Studio
- logging
- windows
- ListView
- coding-test
- 코딩테스트
- Coding
- chashtag
- algorithm
- string
- WPF
- programmers
- csharp
- .net
- IValueConverter
- C#
- convert
- git
Archives
- Today
- Total
CHashtag
[C#] CallerMemberName Attribute 사용법 본문
반응형
C#에는 Attribute라는 유용한 친구가 있습니다.
그중 CallerMemberName을 사용하면 이 함수를 호출한 대상에 대한 이름을 인자로 받게 됩니다.
사용법은 다음과 같습니다.
// Program.cs
static void Main(string[] args)
{
SomeFunction(); // output : Main
}
public static void SomeFunction([CallerMemberName] string callerName = null)
{
Console.WriteLine(callerName);
}
한가지 주의할 점은 default value를 지정해 주어야 한다는 점입니다.
CallerMemberName외에도 CallerFilePath, CallerLineNumber도 있습니다.
저는 주로 INotifyPropertyChanged를 구현할 때 CallerMemberName을 사용합니다.
(BindableBase를 일부분 가져와 사용합니다.)
// SomeModel.cs
public class SomeModel : INotifyPropertyChanged
{
private string someString;
public string SomeString
{
get => someString;
set => SetProperty(ref someString, value);
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
public void SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = null)
{
storage = value;
OnPropertyChanged(propertyName);
}
}
반응형
'C#' 카테고리의 다른 글
[C#] 폴더 크기 구하기 (Get Directory Size) (1) | 2021.07.01 |
---|---|
[C#] Mutex 생성, 해제하기 (중복실행방지) (Lock) (0) | 2021.06.30 |
[C#] [매크로] Low Level 키보드 입력 (Simulation) (2) | 2021.06.30 |
[C#] 파일 확장자로 mime-type 구하기(File Extension) (0) | 2021.05.24 |
[C#] 배포 exe 경로 dll 폴더 분리하기 (probing) (privatePath) (2) | 2021.05.11 |