Jawaban:
Refleksi; misalnya:
obj.GetType().GetProperties();
untuk suatu jenis:
typeof(Foo).GetProperties();
sebagai contoh:
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));
}
Mengikuti umpan balik ...
null
argumen pertamaGetValue
GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)
(yang mengembalikan semua properti instance publik / pribadi).internal
properti juga. Mungkin saya satu-satunya yang terpaku pada private
/ non-public
sintaks?
using System.Reflection
arahan dan System.Reflection.TypeExtensions
paket yang direferensikan - ini memberikan permukaan API yang hilang melalui metode ekstensi
Kamu bisa menggunakan Refleksi untuk melakukan ini: (dari perpustakaan saya - ini mendapatkan nama dan nilai)
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;
}
Hal ini tidak akan berfungsi untuk properti dengan indeks - untuk itu (semakin sulit):
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[]{});
}
Juga, untuk mendapatkan hanya properti publik: ( lihat MSDN di BindingFlags enum )
/* replace */
PropertyInfo[] props = t.GetProperties();
/* with */
PropertyInfo[] props = t.GetProperties(BindingFlags.Public)
Ini juga berfungsi pada tipe anonim!
Untuk mendapatkan namanya saja:
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();
}
Dan hampir sama untuk nilai saja, atau Anda dapat menggunakan:
GetDictionaryFromType().Keys
// or
GetDictionaryFromType().Values
Tapi itu agak lambat, saya bayangkan.
t.GetProperties(BindingFlags.Instance | BindingFlags.Public)
ataut.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;
}
Fungsi ini untuk mendapatkan daftar Properti Kelas.
yield return
. Ini bukan masalah besar, tapi ini cara yang lebih baik untuk melakukannya.
Anda bisa menggunakan System.Reflection
namespace dengan Type.GetProperties()
mehod:
PropertyInfo[] propertyInfos;
propertyInfos = typeof(MyClass).GetProperties(BindingFlags.Public|BindingFlags.Static);
Itu solusi saya
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;
}
}
}
Saya juga menghadapi persyaratan semacam ini.
Dari diskusi ini saya mendapat Ide lain,
Obj.GetType().GetProperties()[0].Name
Ini juga menunjukkan nama properti.
Obj.GetType().GetProperties().Count();
ini menunjukkan sejumlah properti.
Terimakasih untuk semua. Ini diskusi yang bagus.
Inilah jawaban @lucasjones yang ditingkatkan. Saya menyertakan perbaikan yang disebutkan di bagian komentar setelah jawabannya. Saya harap seseorang akan menemukan ini berguna.
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();
}