is it possible in C# to get an object by name?
i.e. get this.obj0 using
string objectName = \"obj0\"; executeSomeFunctionOnObject(this.someLoadObject
No, not all objects have a Name property (for starters).
But you can store objects of interest in a Dictionary. You could also get a Control by name, the exact method would depend on the UI library.
Dictionary