views:

20

answers:

1

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

+2  A: 

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

mfeingold
Beat me to it... +1
Nix
Ditto, just was about to post when it said someone had posted an answer..+1
Richard J. Ross III
That was fast! Thanks alot.
Mir