vote up 2 vote down star

I am writing a Clone method using reflection. How do I detect that a property is an indexed property using reflection? For example:

public string[] Items { get; set; }

My method so far:

    public static T Clone<T>(T from, List<string> propertiesToIgnore) where T : new()
    {
        T to = new T();

        Type myType = from.GetType();

        PropertyInfo[] myProperties = myType.GetProperties();

        for (int i = 0; i < myProperties.Length; i++)
        {
            if (myProperties[i].CanWrite && !propertiesToIgnore.Contains(myProperties[i].Name))
            {
                myProperties[i].SetValue(to,myProperties[i].GetValue(from,null),null);
            }
        }

        return to;
    }
flag
2  
That is not an indexed property, that is a property that returns an array. – Jason Jackson Nov 14 '08 at 21:29

3 Answers

vote up 2 vote down check
if (PropertyInfo.GetIndexParameters().Length > 0)
{
    // Property is an indexer
}
link|flag
lol - beat me to it as I was copying the documentation link. – Jeromy Irvine Nov 14 '08 at 20:59
vote up 2 vote down

What you want is the GetIndexParameters() method. If the array that it returns has more than 0 items, that means it's an indexed property.

See the MSDN documentation for more details.

link|flag
vote up 3 vote down

Sorry, but

public string[] Items { get; set; }

is not an indexed property, it's merely of an array type! However the following is:

public string this[int index]
{
    get { ... }
    set { ... }
}
link|flag

Your Answer

Get an OpenID
or

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