Risposte:
Riflessione; per un'istanza:
obj.GetType().GetProperties();
per un tipo:
typeof(Foo).GetProperties();
per esempio:
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));
}
A seguito di feedback ...
null
come primo argomento aGetValue
GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)
(che restituisce tutte le proprietà dell'istanza pubblica / privata).internal
dà anche proprietà. Forse sono l'unico che è stato bloccato sulla sintassi private
/ non-public
?
using System.Reflection
direttiva e il System.Reflection.TypeExtensions
pacchetto referenziato - questo fornisce la superficie API mancante tramite metodi di estensione
Puoi usare Reflection per fare questo: (dalla mia libreria - questo ottiene i nomi e i valori)
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;
}
Questa cosa non funzionerà per le proprietà con un indice - per questo (sta diventando ingombrante):
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[]{});
}
Inoltre, per ottenere solo proprietà pubbliche: ( vedi MSDN sull'enumerazione BindingFlags )
/* replace */
PropertyInfo[] props = t.GetProperties();
/* with */
PropertyInfo[] props = t.GetProperties(BindingFlags.Public)
Funziona anche su tipi anonimi!
Per ottenere solo i nomi:
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();
}
Ed è quasi lo stesso per i soli valori, oppure puoi usare:
GetDictionaryFromType().Keys
// or
GetDictionaryFromType().Values
Ma è un po 'più lento, immagino.
t.GetProperties(BindingFlags.Instance | BindingFlags.Public)
oppuret.GetProperties(BindingFlags.Static | BindingFlags.Public)
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;
}
Questa funzione serve per ottenere l'elenco delle proprietà della classe.
yield return
. Non è un grosso problema, ma è un modo migliore di farlo.
È possibile utilizzare lo System.Reflection
spazio dei nomi con il Type.GetProperties()
mehod:
PropertyInfo[] propertyInfos;
propertyInfos = typeof(MyClass).GetProperties(BindingFlags.Public|BindingFlags.Static);
Questa è la mia soluzione
public class MyObject
{
public string value1 { get; set; }
public string value2 { get; set; }
public PropertyInfo[] GetProperties()
{
try
{
return this.GetType().GetProperties();
}
catch (Exception ex)
{
throw ex;
}
}
public PropertyInfo GetByParameterName(string ParameterName)
{
try
{
return this.GetType().GetProperties().FirstOrDefault(x => x.Name == ParameterName);
}
catch (Exception ex)
{
throw ex;
}
}
public static MyObject SetValue(MyObject obj, string parameterName,object parameterValue)
{
try
{
obj.GetType().GetProperties().FirstOrDefault(x => x.Name == parameterName).SetValue(obj, parameterValue);
return obj;
}
catch (Exception ex)
{
throw ex;
}
}
}
Sto anche affrontando questo tipo di requisiti.
Da questa discussione ho avuto un'altra idea,
Obj.GetType().GetProperties()[0].Name
Questo mostra anche il nome della proprietà.
Obj.GetType().GetProperties().Count();
questo mostra il numero di proprietà.
Grazie a tutti. Questa è una bella discussione.
Ecco una risposta @lucasjones migliorata. Ho incluso miglioramenti menzionati nella sezione commenti dopo la sua risposta. Spero che qualcuno lo troverà utile.
public static string[] GetTypePropertyNames(object classObject, BindingFlags bindingFlags)
{
if (classObject == null)
{
throw new ArgumentNullException(nameof(classObject));
}
var type = classObject.GetType();
var propertyInfos = type.GetProperties(bindingFlags);
return propertyInfos.Select(propertyInfo => propertyInfo.Name).ToArray();
}