Answers for "c# print all property values of object"

C#
0

c# print all property values of object

public static string PropertyList(this object obj)
{
  var props = obj.GetType().GetProperties();
  var sb = new StringBuilder();
  foreach (var p in props)
  {
    sb.AppendLine(p.Name + ": " + p.GetValue(obj, null));
  }
  return sb.ToString();
}
Posted by: Guest on April-13-2021

Code answers related to "c# print all property values of object"

C# Answers by Framework

Browse Popular Code Answers by Language