I know the name of a property in my C# class. Is it possible to use reflection to set the value of this property?
For example, say I know the name of a property is string propertyName = "first_name";. And there actaully exists a property called first_name. Can I set it using this string?
 
     
    