Notice
Recent Posts
Recent Comments
Link
투케이2K
67. (C#/NET) [Mac Os] [문법] enum 열거체 선언 및 IsDefined 사용해 문자열 존재 여부 확인 본문
C샵 (NET)
67. (C#/NET) [Mac Os] [문법] enum 열거체 선언 및 IsDefined 사용해 문자열 존재 여부 확인
투케이2K 2024. 3. 17. 09:34[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
using System.Data;
using System.Diagnostics.Tracing;
using System.Text;
using System.Web;
namespace testProject {
// [프로그램 동작 클래스]
class Program {
// [enum 선언]
enum Response { None = 1, Success = 2, Fail = 3 }
// [메소드 수행]
static void Main(string[] args){
// [변수 선언 실시] : [IsDefined 문자열 존재 값 확인]
bool isSuccess = Response.IsDefined(typeof(Response), "Success");
bool isError = Response.IsDefined(typeof(Response), "Error");
// [로그 출력 수행]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"isSuccess : {isSuccess}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"isError : {isError}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
69. (C#/NET) [Mac Os] [문법] string 문자열 ToUpper 사용해 영어 대문자 변경 수행 (0) | 2024.03.17 |
---|---|
68. (C#/NET) [Mac Os] [문법] string 문자열 Trim 사용해 문자열 양쪽 공백 제거 수행 (0) | 2024.03.17 |
66. (C#/NET) [Mac Os] [문법] enum 열거체 선언 및 Enum.TryParse 열거체 정의 값 확인 (0) | 2024.03.16 |
65. (C#/NET) [Mac Os] [문법] enum 열거체 선언 및 Enum.Parse 입력 값 타입 확인 (0) | 2024.03.16 |
64. (C#/NET) [Mac Os] [문법] String 문자열 Substring 사용해 부분 문자열 출력 실시 (0) | 2024.03.16 |
Comments