Tagged Questions
24
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 ...
2
votes
3answers
2k views
Non-static method requires a target in PropertyInfo.SetValue
Ok, so I'm learning about generics and I'm trying to make this thing run, but its keep saying me the same error. Here's the code:
public static T Test<T>(MyClass myClass) where T : MyClass2
...
1
vote
1answer
286 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
157 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
72 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
231 views
It throws an stackoverflow exception when I user PropertyInfo.SetValue()
When I use PropertyInfo.SetValue in asp.net , it throws a stackoverflow exception.
That I write this code:
for (int i = 0; i < rivalSeriesIDList.Count; i++)
{
cardb_series ...