クラスの全プロパティのリストを取得するにはどうすればいいですか?
反射;インスタンスの場合:
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)
(すべてのパブリック/プライベートインスタンスプロパティを返す)を使用します。これを行うには 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[]{});
}
また、パブリックプロパティのみを取得するには( BindingFlags列挙型のMSDNを参照 )
/* 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
しかし、それは少し遅いです、私は想像するでしょう。
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;
}
この関数はクラスプロパティのリストを取得するためのものです。
Type.GetProperties()
メソッドでSystem.Reflection
名前空間を使用できます。
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();
これが@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();
}
私もこのような要求に直面しています。
この議論から私は別のアイデアを得ました、
Obj.GetType().GetProperties()[0].Name
これはプロパティ名も表示しています。
Obj.GetType().GetProperties().Count();
これはプロパティの数を示しています。
ありがとうございます。これはいい議論です。