Link to home
Start Free TrialLog in
Avatar of pclarke7
pclarke7

asked on

How do I reference an object using the object name passed in a string.

Hello,
I thought I had this sorted via a question I posed two weeks ago - but unfortunately I didn't. Below is just a mock up to demonstrate what I am trying to achieve. I want the user to be able to pass in the name of an object in a text array(eg. "MyDict", "MyClass" etc..) and for the application to be able to add the named object to an array of objects.  In the highlighted code below the 1st line moves "Dict" to the object array varList. I want it to add the obj Dict just like the line below does. Any idea how I can achieve this ? Please give working example if possible

regards
Pat


namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
        Dictionary<string, string> dict = new Dictionary<string, string>() {{"cat", "manx"},{"dog", "labrador"}};
        List<object> varList=new List<object>();
        string[] delimitedList= new string[] {"obj1","obj2","dict"};

        for (int j = 0; j < 3; j++)
        {
            switch (delimitedList[j])
            {
               case "dict":
                    varList.Add(delimitedList[j].Replace("\"", ""));  //I would like this to work just like the line below//
                    varList.Add(dict);
                    break;
               case "obj1":
                    varList.Add(delimitedList[j].Replace("\"", ""));
                    break;

                default:
                    break;
            }
          }
         }
        }
    }
Avatar of kaufmed
kaufmed
Flag of United States of America image

I want the user to be able to pass in the name of an object in a text array...
Is this object pointed to by a variable that has the same name as the string being passed in by the user?
ASKER CERTIFIED SOLUTION
Avatar of Michael Fowler
Michael Fowler
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pclarke7
pclarke7

ASKER

Hi Kaufmed,
yes, the variable name will have the same name as the object and I want the variable name to point to the object. So variables ("MyCar","MyCar.colour","MyDict") will point to obJect MyCar object, MyCar.colour object property and MyDict dictionary object respectively.

Hi Michael
Yes , I believe that this will work. However what is the overhead ? Is the "dict",dict dictionary entry a pointer to dict or does it contain the dict object. If it contains the object then this would be excessive

regards
Pat
Objects are reference types and so pointers are stored
Hi Michael,
I have been looking at your suggestion.  I will work well for objects such as lists and dictionaries , but not so well for class objects.  For instance if I have a Class with 50 properties Myclass.colour, Myclass.size,, Myclass.shape etc.... and if I want to allow the user to point to a property by name then I would need to set up each property in the dictionary which is a lot of effort.

Is there any other way, using reflection, to point variable  "MyClass.colour" to object property Myclass.colour ?

regards
Pat
Yes, use the Type.GetProperty and the PropertyInfo.GetValue methods
https://msdn.microsoft.com/en-us/library/kz0a8sxy(v=vs.110).aspx
https://msdn.microsoft.com/en-us/library/hh194385(v=vs.110).aspx

for example

myClass.GetType().GetProperty("colour").GetValue(myClass, null);

Open in new window

Hi Michael
so could I do something like this

string[] delimitedList= new string[] {"MyClass.colour", "Myclass.size"}; // user has requested these two values at runtime
for(j=0,j<delimitedList.Lenth;j++)
{
// Substring  "MyClass.colour" into two variables called class & prop (class="MyClass" & prop="colour")

myDicts.Add(delimitedList[j] , myClass.GetType().GetProperty(class).GetValue(prop, null););

}
This is getting confusing.

A class is a reference type and so when you create a new class object eg
Dog myDog = new Dog("German Shepherd", "Black", "2");

Open in new window

myDog is a pointer to this instance of the Dog class. To access the information stored in this class the application needs to know where to look and the reference myDog contains this memory location.

In my example above reflection is using a string value to find a variable in a given instance of a class where the variable name matches the string. Reflection cannot locate a class in this way as the class does not know it has a pointer to it named myDog.

Given this you will always need to store pointers to the class objects if you wish to retrieve information from these classes at a later date, in fact once a class goes out of scope the garbage collector will remove it.

So in answer to your question, no it will not work.

What are you trying to achieve here? It would help me to provide alternatives if I understood your goals and application type (winform, web site etc).
Hi Michael,
thanks for all your input. I have successfully used a dictionary to allow user to select either an object or object property. I get the property information using PropertyInfo.

regards
Pat