Yanıtlar:
Yansıma; bir örnek için:
obj.GetType().GetProperties();
bir tür için:
typeof(Foo).GetProperties();
Örneğin:
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));
}
Geri bildirim takip ediliyor ...
null
, ilk bağımsız değişken olarakGetValue
GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)
tüm genel / özel yönetim ortamı özelliklerini döndürür).internal
özellik kazandırıyor. Belki de private
/ non-public
sözdiziminde takılan tek kişi benim ?
using System.Reflection
yönerge ve System.Reflection.TypeExtensions
pakete başvuruda bulunduğunuzdan emin olmanız gerekir - bu, uzantı yöntemleri aracılığıyla eksik API yüzeyini sağlar
Bunu yapmak için Yansıma kullanabilirsiniz : (kütüphanemden - bu, adları ve değerleri alır)
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;
}
Bu şey, bir dizine sahip özellikler için çalışmaz - bunun için (kullanışsız oluyor):
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[]{});
}
Ayrıca, yalnızca herkese açık mülkleri edinmek için: ( BindingFlags enum'daki MSDN'ye bakın )
/* replace */
PropertyInfo[] props = t.GetProperties();
/* with */
PropertyInfo[] props = t.GetProperties(BindingFlags.Public)
Bu anonim türlerde de çalışır!
Sadece isimleri almak için:
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();
}
Ve sadece değerler için hemen hemen aynı ya da kullanabilirsiniz:
GetDictionaryFromType().Keys
// or
GetDictionaryFromType().Values
Ama bu biraz daha yavaş, hayal edebiliyorum.
t.GetProperties(BindingFlags.Instance | BindingFlags.Public)
veyat.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;
}
Bu işlev Sınıf Özelliklerinin listesini almak içindir.
yield return
. Çok önemli değil, ama bunu yapmanın daha iyi bir yolu.
Ad System.Reflection
alanını Type.GetProperties()
mehod ile kullanabilirsiniz :
PropertyInfo[] propertyInfos;
propertyInfos = typeof(MyClass).GetProperties(BindingFlags.Public|BindingFlags.Static);
Bu benim çözümüm
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;
}
}
}
Ben de bu tür bir gereksinimle karşı karşıyayım.
Bu tartışmadan başka bir fikrim var,
Obj.GetType().GetProperties()[0].Name
Bu aynı zamanda özellik adını da gösterir.
Obj.GetType().GetProperties().Count();
bu özelliklerin sayısını gösterir.
Herkese teşekkürler. Bu güzel bir tartışma.
İşte @lucasjones cevabı geliştirildi. Cevabından sonra yorum bölümünde bahsedilen iyileştirmeleri ekledim. Umarım birisi bunu faydalı bulur.
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();
}