Is there something like Python's getattr() in C#? I would like to create a window by reading a list which contains the names of controls to put on the window.
|
There is also Type.InvokeMember.
Which could be used like:
or (as an extension method):
|
|||
|
|
|
Use reflection for this.
If you don't necessarily know the type (which would be a little wierd if you new the property name), than you could do something like this as well.
|
||||
|
|
|
Yes, you can do this...
|
|||
|
|
|
There's the System.Reflection.PropertyInfo class that can be created using object.GetType().GetProperties(). That can be used to probe an object's properties using strings. (Similar methods exist for object methods, fields, etc.) I don't think that will help you accomplish your goals though. You should probably just create and manipulate the objects directly. Controls have a Name property that you can set, for example. |
|||
|
|