ฉันจะรับรายการคุณสมบัติทั้งหมดของคลาสได้อย่างไร
ฉันจะรับรายการคุณสมบัติทั้งหมดของคลาสได้อย่างไร
คำตอบ:
การสะท้อน; เช่น:
obj.GetType().GetProperties();
สำหรับประเภท:
typeof(Foo).GetProperties();
ตัวอย่างเช่น:
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));
}
กำลังติดตามความคิดเห็น ...
null
อาร์กิวเมนต์แรกไปที่GetValue
GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)
(ซึ่งจะส่งกลับคุณสมบัติของอินสแตนซ์สาธารณะ / ส่วนตัวทั้งหมด)internal
คุณสมบัติเช่นกัน บางทีฉันอาจเป็นคนเดียวที่ถูกแขวนบนprivate
/ non-public
ไวยากรณ์?
using System.Reflection
คำสั่งและการSystem.Reflection.TypeExtensions
อ้างอิงแพคเกจ - สิ่งนี้จะให้พื้นผิว API ที่ขาดหายไปผ่านวิธีการขยาย
คุณสามารถใช้Reflectionเพื่อทำสิ่งนี้: (จากห้องสมุดของฉัน - สิ่งนี้จะได้รับชื่อและค่า)
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;
}
สิ่งนี้จะไม่ทำงานสำหรับคุณสมบัติที่มีดัชนี - สำหรับสิ่งนั้น (มันเริ่มยากขึ้น):
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[]{});
}
เพื่อรับคุณสมบัติสาธารณะเท่านั้น ( ดู MSDN บน BindingFlags enum )
/* replace */
PropertyInfo[] props = t.GetProperties();
/* with */
PropertyInfo[] props = t.GetProperties(BindingFlags.Public)
ใช้งานได้กับประเภทที่ไม่ระบุชื่อเช่นกัน!
ในการรับชื่อ:
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();
}
และมันก็เหมือนกันสำหรับค่าหรือคุณสามารถใช้:
GetDictionaryFromType().Keys
// or
GetDictionaryFromType().Values
แต่มันช้าไปหน่อยฉันจะจินตนาการ
t.GetProperties(BindingFlags.Instance | BindingFlags.Public)
หรือt.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;
}
ฟังก์ชั่นนี้ใช้สำหรับรับรายการคุณสมบัติคลาส
yield return
คุณอาจต้องการที่จะเปลี่ยนแปลงนี้กับการใช้งาน มันไม่ใช่เรื่องใหญ่ แต่เป็นวิธีที่ดีกว่าในการทำมัน
คุณสามารถใช้System.Reflection
เนมสเปซกับType.GetProperties()
mehod:
PropertyInfo[] propertyInfos;
propertyInfos = typeof(MyClass).GetProperties(BindingFlags.Public|BindingFlags.Static);
จากคำตอบของ @ MarcGravell นี่คือรุ่นที่ใช้งานได้ใน Unity C #
ObjectsClass foo = this;
foreach(var prop in foo.GetType().GetProperties()) {
Debug.Log("{0}={1}, " + prop.Name + ", " + prop.GetValue(foo, null));
}
นั่นคือทางออกของฉัน
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;
}
}
}
คุณสามารถใช้การสะท้อน
Type typeOfMyObject = myObject.GetType();
PropertyInfo[] properties =typeOfMyObject.GetProperties();
ฉันกำลังเผชิญกับความต้องการเช่นนี้
จากการสนทนานี้ฉันได้รับแนวคิดใหม่
Obj.GetType().GetProperties()[0].Name
นี่คือการแสดงชื่อคุณสมบัติ
Obj.GetType().GetProperties().Count();
แสดงจำนวนของคุณสมบัติ
ขอบคุณทุกคน. เป็นการสนทนาที่ดี
นี่คือคำตอบ @lucasjones ที่ปรับปรุงแล้ว ฉันรวมการปรับปรุงที่กล่าวถึงในส่วนความคิดเห็นหลังจากคำตอบของเขา ฉันหวังว่าบางคนจะพบว่ามีประโยชน์นี้
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();
}