유형이 "단순"유형인지 어떻게 알 수 있습니까? 즉, 단일 값을 보유합니다. typeof(string).IsPrimitive == false typeof(int).IsPrimitive == true typeof(MyClass).IsClass == true typeof(string).IsClass == true typeof(string).IsByRef == false typeof(MyClass).IsByRef == true // correction: should be false (see comments below) T의 새 인스턴스를 인스턴스화하는 메서드가 있으며 "복잡한"클래스 인 경우 소스 데이터 값 집합에서 속성을 채 웁니다. (a) T가 단순 유형 (예 : 문자열 또는 int 또는 기타 유사한 것)..