0

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

Nix
  • 57,072
  • 29
  • 149
  • 198
Mir
  • 454
  • 1
  • 4
  • 13

1 Answers1

2

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
  • 7,094
  • 4
  • 37
  • 43