728x90
728x170
Enum 에 선언된 내용으로 string 을 변환 하고 싶을 때 아래와 같이 합니다.
EnumType testEnumType = (EnumType)Enum.Parse(typeof(EnumType), "변경할string", true)
예)
public enum EnumTestType
{
A,
B
}
EnumTestType testEnumType = (EnumTestType)Enum.Parse(typeof(EnumTestType), "A", true)
728x90
그리드형
'C# > Winform' 카테고리의 다른 글
(.NET) Converter, ConvertAll (0) | 2017.04.15 |
---|---|
(.NET) DataTable Distince (0) | 2017.04.15 |
(.NET) 사전조건 Contract.Requires (0) | 2017.04.15 |
(.NET) Dictionary 의 키를 대소문자 구분없이 넣어 찾아 내기 (0) | 2017.04.15 |
(.NET) 소멸자를 명시적으로 사용하지 말것을 권장하는 이유 (0) | 2017.04.15 |