উত্তর:
প্রতিফলন; উদাহরণস্বরূপ:
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
প্যাকেজটি রেফারেন্স রয়েছে তা নিশ্চিত করা দরকার - এটি এক্সটেনশন পদ্ধতির মাধ্যমে হারিয়ে যাওয়া এপিআই পৃষ্ঠ সরবরাহ করে
আপনি এটি করতে প্রতিচ্ছবি ব্যবহার করতে পারেন : (আমার গ্রন্থাগার থেকে - এটি নাম এবং মানগুলি পায়)
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[]{});
}
এছাড়াও, কেবলমাত্র সর্বজনীন সম্পত্তি পেতে: ( বাইন্ডিংফ্লাগ এনামে এমএসডিএন দেখুন )
/* 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()
:
PropertyInfo[] propertyInfos;
propertyInfos = typeof(MyClass).GetProperties(BindingFlags.Public|BindingFlags.Static);
এটাই আমার সমাধান
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;
}
}
}
আমিও এই ধরণের প্রয়োজনের মুখোমুখি হয়েছি।
এই আলোচনা থেকে আমি অন্য আইডিয়া পেয়েছি,
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();
}