Search code examples
c#reflectiongeneric-listpropertyinfo

C# convert reflection.propertyinfo to Generic.List<>


How do I go about converting a reflection.propertyinfo[] to a generic.list<>?


Solution

  • var list = yourArray.ToList();