Заполнение свойств объекта значениями по умолчанию Рекурсивно - PullRequest
2 голосов
/ 08 октября 2009

Я хочу заполнить свойства объекта некоторыми фиктивными данными. Вот мой код, но он всегда возвращает ноль.

private static object InsertDummyValues(object obj)
{
    if (obj != null)
    {
        var properties = obj.GetType().GetProperties(BindingFlags.Instance | BindingFlags.DeclaredOnly | BindingFlags.Public);

        foreach (var property in properties)
        {
            if (property.PropertyType == typeof (String))
            {
                property.SetValue(obj, property.Name.ToString(), null);
            }

            else if (property.PropertyType == typeof(Boolean))
            {
                property.SetValue(obj, true, null);
            }

            else if (property.PropertyType == typeof(Decimal))
            {
                property.SetValue(obj, 23.5, null);
            }

            else
            {
                // create the object 
                var o = Activator.CreateInstance(Type.GetType(property.PropertyType.Name));
                property.SetValue(obj,o,null);
                if (o != null) 
                   return InsertDummyValues(o);
            }
        }
    }

    return obj; 
}

Ответы [ 2 ]

3 голосов
/ 08 октября 2009

Вы сказали return null;, попробуйте return obj;.

Также удалите return из строки if (o != null) return InsertDummyValues(o);.

Чтобы ответить на ваш вопрос в комментарии ...

else if (property.PropertyType.IsArray)
{
    property.SetValue(obj, Array.CreateInstance(type.GetElementType(), 0), null);
}
1 голос
/ 08 октября 2009

Вам не хватает return obj; в конце блока if (obj != null) ...

...