¿Cómo obtener la lista de propiedades de una clase?

Resuelto asked hace 15 años • 0 respuestas

¿Cómo obtengo una lista de todas las propiedades de una clase?

 avatar Apr 10 '09 16:04
Aceptado

Reflexión; por ejemplo:

obj.GetType().GetProperties();

para un tipo:

typeof(Foo).GetProperties();

Por ejemplo:

class Foo {
    public int A {get;set;}
    public string B {get;set;}
}
...
Foo foo = new Foo {A = 1, B = "abc"};
foreach(var prop in foo.GetType().GetProperties()) {
    Console.WriteLine("{0}={1}", prop.Name, prop.GetValue(foo, null));
}

Siguiendo los comentarios...

  • Para obtener el valor de las propiedades estáticas, pase nullcomo primer argumento aGetValue
  • Para ver propiedades no públicas, utilice (por ejemplo) GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)(que devuelve todas las propiedades de instancias públicas/privadas).
Marc Gravell avatar Apr 10 '2009 09:04 Marc Gravell

Puedes usar Reflection para hacer esto: (de mi biblioteca - esto obtiene los nombres y valores)

public static Dictionary<string, object> DictionaryFromType(object atype)
{
    if (atype == null) return new Dictionary<string, object>();
    Type t = atype.GetType();
    PropertyInfo[] props = t.GetProperties();
    Dictionary<string, object> dict = new Dictionary<string, object>();
    foreach (PropertyInfo prp in props)
    {
        object value = prp.GetValue(atype, new object[]{});
        dict.Add(prp.Name, value);
    }
    return dict;
}

Esto no funcionará para propiedades con un índice; para eso (se está volviendo difícil de manejar):

public static Dictionary<string, object> DictionaryFromType(object atype, 
     Dictionary<string, object[]> indexers)
{
    /* replace GetValue() call above with: */
    object value = prp.GetValue(atype, ((indexers.ContainsKey(prp.Name)?indexers[prp.Name]:new string[]{});
}

Además, para obtener solo propiedades públicas: ( consulte MSDN en la enumeración BindingFlags )

/* replace */
PropertyInfo[] props = t.GetProperties();
/* with */
PropertyInfo[] props = t.GetProperties(BindingFlags.Public)

¡Esto también funciona con tipos anónimos!
Para obtener solo los nombres:

public static string[] PropertiesFromType(object atype)
{
    if (atype == null) return new string[] {};
    Type t = atype.GetType();
    PropertyInfo[] props = t.GetProperties();
    List<string> propNames = new List<string>();
    foreach (PropertyInfo prp in props)
    {
        propNames.Add(prp.Name);
    }
    return propNames.ToArray();
}

Y es casi lo mismo solo para los valores, o puedes usar:

GetDictionaryFromType().Keys
// or
GetDictionaryFromType().Values

Pero me imagino que eso es un poco más lento.

Lucas Jones avatar Apr 10 '2009 09:04 Lucas Jones
public List<string> GetPropertiesNameOfClass(object pObject)
{
    List<string> propertyList = new List<string>();
    if (pObject != null)
    {
        foreach (var prop in pObject.GetType().GetProperties())
        {
            propertyList.Add(prop.Name);
        }
    }
    return propertyList;
}

Esta función sirve para obtener una lista de propiedades de clase.

DDTBNT avatar Jul 24 '2014 02:07 DDTBNT