回答:
反射; インスタンスの場合:
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サーフェスが提供されます
リフレクションを使用してこれを行うことができます:(私のライブラリから-これは名前と値を取得します)
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
。それは大したことではありませんが、それを行うためのより良い方法です。
それが私の解決策です
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;
}
}
}
@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();
}