클래스 타입 비교1 C# 클래스 타입 비교 C#에서 클래스 타입을 비교하는 2가지 방법입니다. string str = "문자"; if (str.GetType() == typeof(string)) { // 처리 로직 } if (str is string) { // 처리로직 } 2015. 9. 23. 이전 1 다음