Object Properties at Runtime

  • Thread starter Thread starter Jeff Cope
  • Start date Start date
J

Jeff Cope

Delphi we had something called RTTI (runtime type information) that allows a
user to see attributes of an object at runtime such as properties, methods,
etc...Is there something in c# that's similar?

Thanks for your help.
Jeff
 
Jeff Cope said:
Delphi we had something called RTTI (runtime type information) that allows a
user to see attributes of an object at runtime such as properties, methods,
etc...Is there something in c# that's similar?

Yup. It's called Reflection. Take a look at System.reflection namespace.
 
Back
Top