If I wanted to put a few thousand or so properties in a class could .Net framework handle it? Is there a recommended way to manage large number of properties in a class?
Why do I ask?
We are building apps that scrape and enter data into mainframe screens via emulators.
If i were grab a customer address under our current programming methodology it would look something like this
GoToScreen "INFO","",customerNbr
Dim custAddr as String = MainFrame.ReadScreenPosition(10,2,50)
In my perfect world you have
Dim custAddr as String = MainFrame.CustomerAddress
here MainFrame class already knows the screen and position where to find customer address and all the developer does is pick through a list of properties in intellisense. The BA won't need to locate all the positions of all the fields every time when they write them into the specs.
Is there a better way to do this?