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 ...
4
votes
3answers
396 views
Are the SetValue/GetValue methods of System.Array thread-safe?
We had a little discussion in the office, and got no documented answer:
Is System.Array.SetValue thread safe?
using System;
using System.Text;
using System.Threading;
namespace MyApp
{
class ...
4
votes
5answers
6k 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
169 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 = ...
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
0answers
18 views
PropertyExtension.SetValue() not working in Layer Diagram Extensions of Visual Studio 2010 modeling Project
I'm creating Custom Properties for the Layer Diagram in Visual Studio 2010 Modeling Projects (these custom properties are displayed in Property Window).I have gone through msdn samples. Below is the ...
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
381 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 ...