Answers for "C# traverseall elements in class property"

C#
0

c# loop class properties add to array

Record record = new Record();

PropertyInfo[] properties = typeof(Record).GetProperties();
foreach (PropertyInfo property in properties)
{
    property.SetValue(record, value);
}
Posted by: Guest on November-25-2020
0

C# traverseall elements in class property

SomeObject.GetType().GetProperties().ToList().ForEach(x => Console.WriteLine($"{x.Name} = {x.GetValue(SomeObject, null)}"));
Posted by: Guest on January-27-2021

C# Answers by Framework

Browse Popular Code Answers by Language