728x90
//별도 참조할 클래스 생성
public static class Address
{
public static readonly string data1Car = "1";
public static readonly string data2Car = "2";
public static readonly string data3Car = "3";
}
//문자열만으로 변수 호출
for (int c = 1; c <= 3; c++)
{
typeof(Address).GetField($"data{c}Car").GetValue(null).ToString();
}
후....물어볼사람도 없고...독학으로 개발하기는 어렵군요.
머슴살이도 대감집에서 하라고 했는데...하...
728x90
'C#' 카테고리의 다른 글
C# / 지연 함수 딜레이 delay (0) | 2023.02.06 |
---|---|
C# / 폼 맨 앞으로, 폼 포커스 최상위, SetForegroundWindow (0) | 2022.07.29 |
C# / 폼 생성 정보 확인 및 특정 폼 제외 전부 닫기 / find open form close (0) | 2022.06.29 |
C# / 자동 시작 안될 때 경로 지정, Application.ExecutablePath (0) | 2022.06.16 |
C# / Console system.io.ioexception (0) | 2022.06.10 |