문제

Greetings, doing research into outside code I got this control returning

 {
   Name = "DateTimeUI" 
   FullName = "System.ComponentModel.Design.DateTimeEditor+DateTimeUI"
 }

to Type.GetType(). I've no idea what DateTimeUI is, and "DateTimeEditor+DateTimeUI" seems pretty confusing aswell. The class isnt defined in the code I was researching.

Googling yielded no relevant results except this, which didnt help; I'm all out of sources to draw from, and would appreciate any clarification on the matter

도움이 되었습니까?

해결책

Based on the class name DateTimeUI is a class nested inside the System.ComponentModel.Design.DateTimeEditor class. If you need to dig in further - disassemble the code with RedGate reflector

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top