Tagged Questions
25
votes
8answers
8k views
C# - setting a property by reflection with a string value
I'd like to set a property of an object through reflection, with a value of type string.
So, for instance, suppose I have a Ship class, with a property of Latitude, which is a double.
Here's what I'd ...
4
votes
5answers
7k views
SetValue on PropertyInfo instance error “Object does not match target type” c#
Been using a Copy method with this code in it in various places in previous projects (to deal with objects that have same named properties but do not derive from a common base class or implement a ...
3
votes
2answers
171 views
Strange Reflection problem - can't get it
please help me understand what's going on in here and whether it should work like that ?
I have a generic list of objects from a CMS:
For example List<MyCMS.Articles.Article> myArticles = ...
1
vote
1answer
309 views
PropertyInfo.SetValue(object obj, object val, object[] index) property value doesn't change on changing “object val”
I have come across a very weird problem. I am trying to set a property of a particular object assigning it a value of another project via
/* PropertyInfo.SetValue(object obj, object val, object[] ...
0
votes
2answers
168 views
.NET PropertyInfo.SetValue seemingly ignoring my commands
As the topic suggests I have some problems with PropertyInfo.SetValue. To get to the point, here is my example - I have created my own class and the main thing about it is the presentation object:
...
0
votes
1answer
80 views
using PropertyInfo to assign a value to a wrapper class with a custom indexer
I need to assign a value via PropertyInfo.
I'm having some problems when the type of the property is my custom class (a wrapper around a dictionary, designed to contain multiple language versions of ...
0
votes
1answer
404 views
C#, WPF - setting alignment property by reflection with a string value
I'd like to set align property (horizontal/vertical) of an object through reflection, with a value of type string. I use something like
private void SetPropertiesFromString(object nav, string ...