3

オブジェクトのプロパティにダミー データを入力したいと考えています。これが私のコードですが、常にnullを返します。

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; 
}
4

2 に答える 2

3

あなたはそれをに言いました。代わり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);
}
于 2009-10-08T18:54:21.167 に答える
1

ブロックreturn obj;の最後にa がありません...if (obj != null)

于 2009-10-08T18:53:00.013 に答える