up vote 0 down vote favorite
share [g+] share [fb]

Is it possible to get the variable name using which the object was called in C#? Or is it possible to get all the variable which are reffering a particular object?

EDIT: Just to clarify further even though this has been answered.

Consider the code sample given by Fredrik Mörk

User someUser = new User(); 
User anotherVariable = someUser; 

i.Is it possible to find someUser using the object reffered by anotherVariable.
ii. Is it possible to find get the name of the variable using which the object was called. That is something like someUser.getName() should give "someUser" as output.

Thanks...

link|improve this question

I dont think this is possible.. you might want to elaborate the situation.. – Aseem Gautam Sep 8 '10 at 8:44
1  
What do you want to achieve? – Yves M. Sep 8 '10 at 8:49
feedback

3 Answers

up vote 2 down vote accepted

No, there's no support for this. Of course, if you have a set of "candidate" variables (e.g. "find all the instance variables in this type, here's a bunch of objects of that type") then you can check whether any of them currently refer to a specific value. But otherwise, no.

link|improve this answer
I think I may be misunderstanding the requirement. Will keep watching. EDIT - Yep, I get it now, deleted my answer. – Kyle Rozendo Sep 8 '10 at 8:43
feedback

I am not sure that I understand your question, but I interpret it this way:

User someUser = new User();
User anotherVariable = someUser;

Now you want to find someUser using the object referenced by anotherVariable (which is the user object originally assigned to someUser). If that is the question, the answer is no, that is not possible (AFAIK).

link|improve this answer
is it possible to do someUser.getname() and get "someUser" as output? – Manoj Sep 8 '10 at 8:45
No, not that I am aware of. – Fredrik Mörk Sep 8 '10 at 8:50
feedback

You can do this by using reflection to walk the object hierarchy and look for fields that reference the object you're looking for. Here's a function I use to accomplish this. You must provide a root object for its search.

This could probably be improved upon if you can look at the root stack frame and walk the local variables in there, but for my purposes, the app usually knows the rootmost object that it cares about.

// Spew all references to obj throughout the object hierarchy.
public static void FindReferences( object appRootObject, object obj )
{
    Stack<ReferencePath> stack = new Stack<ReferencePath>();
    FindReferences_R( stack, appRootObject, obj );
}

struct ReferencePath
{
    public ReferencePath( object parentObj, FieldInfo parentField )
    {
        m_ParentObject = parentObj;
        m_ParentField = parentField;
    }

    public object m_ParentObject;
    public FieldInfo m_ParentField;
}

static void PrintReferencePath( Stack< ReferencePath > stack )
{
    string s = "RootObject";
    foreach ( ReferencePath path in stack.ToArray().Reverse() )
    {
        s += "." + path.m_ParentField.Name;
    }
    System.Console.WriteLine( s );
}

static bool StackContainsParent( Stack< ReferencePath > stack, object obj )
{
    foreach ( ReferencePath path in stack )
    {
        if ( path.m_ParentObject == obj )
            return true;
    }

    return false;
}

static void FindReferences_R( Stack< ReferencePath > stack, object curParent, object obj )
{
    Type parentType = curParent.GetType();

    foreach ( MemberInfo memberInfo in parentType.GetMembers( BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance ) )
    {
        FieldInfo fieldInfo = memberInfo as FieldInfo;
        if ( fieldInfo == null )
            continue;

        Type fieldType = fieldInfo.FieldType;
        if ( !fieldType.IsClass )
            continue;

        object value = fieldInfo.GetValue( curParent );
        if ( value == null )
            continue;

        stack.Push( new ReferencePath( curParent, fieldInfo ) );
        if ( value == obj )
        {
            PrintReferencePath( stack );
        }

        // Recurse, but don't recurse forever.
        if ( !StackContainsParent( stack, value ) )
        {
            FindReferences_R( stack, value, obj );
        }

        stack.Pop();
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.