Set Value To Property Of ThirdParty Library That Has Only Getter (ReadOnly)

PHOTO EMBED

Fri Sep 16 2022 05:44:14 GMT+0000 (Coordinated Universal Time)

Saved by @HristoT #c#

typeof(/*The Class*/).GetProperties().First(f => f.Name.Contains(/*name of property*/)).SetValue(/*object of the class*/, /*the value*/);
content_copyCOPY