Tagged Questions

System.Reflection is a namespace of the .NET framework. It contains types that retrieve information about assemblies, modules, members, parameters, and other entities in managed code by examining their metadata.

learn more… | top users | synonyms

17
votes
2answers
294 views

Why does ICustomAttributeProvider.GetCustomAttributes() return object[] instead of Attribute[]?

Why does ICustomAttributeProvider.GetCustomAttributes() return object[] instead of Attribute[]? Is there any circumstance when using the ICustomAttributeProvider implementations from mscorlib and ...
10
votes
2answers
115 views

Why does the CLR allow mutating boxed immutable value types?

I have a situation where I have a simple, immutable value type: public struct ImmutableStruct { private readonly string _name; public ImmutableStruct( string name ) { _name = ...
10
votes
3answers
3k views

Difference between LoadFile and LoadFrom with .NET Assemblies?

I was looking at the msdn documentation and I am still a little confused on what exactly is the difference between using LoadFile and LoadFrom when loading an assembly. Can someone provide an example ...
7
votes
2answers
247 views

Test if a method is an override? [closed]

Possible Duplicate: Detect if a method was overridden using Reflection (C#) Is there a way to tell if a method is an override? For e.g. public class Foo { public virtual void ...
6
votes
3answers
409 views

Fast Access to the type/method/… that holds an Attribute in C#

I have made a custom Attribute here named AAtribute, and for instance a class called B where one or more methods use the attribute. Is it possible to get the MethodInfo of the method that holds the ...
4
votes
1answer
93 views

Getting a type's member description

I am writing a program which utilises the System.Reflection namespace of the Microsoft .NET 4.0 Framework, however there is a piece of information that I require which I cannot find or does not exist ...
4
votes
3answers
153 views

Typecast to a type from just the string representation of the type name

sTypeName = ... //do some string stuff here to get the name of the type /* The Assembly.CreateInstance function returns a type of System.object. I want to type cast it to the type whose name is ...
4
votes
5answers
3k views

Why would Assembly.GetExecutingAssembly() return null?

I am using a xml file as an embedded resource to load an XDocument. We are using the following code to get the appropriate file from the Assembly: XDocument xd = new XDocument(); Assembly assembly = ...
4
votes
2answers
1k views

Using Reflection to set a static variable value before object's initialization? (C#)

Is there anyway to set a value of a static (private) variable without needing to initalize the object? The SetValue method requires an instance, but I'm hoping there's a way to get around this. ...
4
votes
4answers
7k views

Using Reflection to get Method Name and Parameters

I am trying to workout a way to programatically create a key for Memcached, based on the Method Name and parameters. So if I have a method: string GetName(int param1, int param2); It would return: ...
3
votes
3answers
144 views

Conditionally instantiate a class in C#

I've been busting my hump trying to get a new code to work. I have been able to do this in a simpler but more extensive way, through if statements. However, as this is going to be version 2 of the ...
3
votes
2answers
174 views

Getting a cmdlet's dynamic parameters via reflection

Powershell exposes some parameters, "dynamic parameters", based on context. The MSDN page explains the mechanism pretty well, but the skinny is that to find out about these one must call ...
3
votes
2answers
375 views

Null Reference Exception with System.Reflection.Assembly

I have developed a Library for internal email reporting. When I am using that Library from another project (By Adding Reference). It gives NullReferenceException on the following line. ...
2
votes
3answers
69 views

Programatically accessing the .NET APIs

Is there a way to retrieve metadata about the .NET APIs? For example, suppose I'd like to get a list of all the properties defined for System.Windows.Documents.List. It'd be nice to get this ...
2
votes
2answers
36 views

Use Reflection to get PropertyInfo, only want to see accessors that have mutators

Using reflection I want to retrieve only the properties that have both a get and a set method, and ignore ones with only a get. What I'm trying to do is give the user a list of variables that he/she ...
2
votes
2answers
106 views

How to get a Nullable<T> (instead of the underlying value) through FieldInfo.GetValue()?

In an application I have some code that has a FieldInfo for a Nullable<int> and I need to retrieve the nullable value (not the underlying value) like in the sample bellow: class Test { ...
2
votes
2answers
59 views

Why does Assembly.GetTypes() require references?

I want to get all of the types from my assembly, but I don't have the references, nor do I care about them. What does finding the interface types have to do with the references? and is there a way ...
2
votes
1answer
65 views

C# Setting object DateTime property values through reflection

I want to set all DateTime properties of my object to a default date. However, if I try do set the values through reflection I get the exception: "Object does not match target type." private void ...
2
votes
1answer
45 views

System.Reflection; Produce a List of Fields (of a certain Type)

I have a class which has a large number of static fields of a certain type, say Foo. In order to simplify and shorten code, I thought about putting them into an array (i.e. their references of ...
2
votes
2answers
101 views

how to serialize/deserialize an assembly object to and from a byte array

Let's say a create an (executable) assembly in memory by compiling a code string. Then I want to serialize this assembly object into a byte array and then store it in a database. Then later on I ...
2
votes
3answers
490 views

Using System.Reflection to determine ALL references

I am trying to determine every single reference inside a dll with System.Reflection. However, GetReferencedAssemblies only lists the ones in the "References" (visible in solution explorer). I would ...
2
votes
2answers
1k views

How to get constructor as MethodInfo using Reflection

The constructor looks like this: public NameAndValue(string name, string value) I need to get it as a MethodInfo using Reflection. It tried the following, but it does not find the constructor ...
1
vote
0answers
25 views

Using NUnit+Reflection, can't find any events on my ActiveX control

I'm unit-testing an old-school COM/ActiveX control using NUnit and C#. I'm doing everything dynamically, no References or compile-time type information, because the control I'm testing is used ...
1
vote
1answer
22 views

Environment.CurrentDirectory vs System.Reflection

Out of the following methods to get the working directory of an executing assembly, is there a recommendation on which one is considered Best Practice? I hear from my developers that Method 1 fails ...
1
vote
0answers
14 views

Portable Class Library equivalent to MethodBase.GetCurrentMethod

Is there Portable Class Library equivalent to MethodBase.GetCurrentMethod? I'm new to PCLs. I'm justing looking into whether I can use a PCL to hold some client code that will definitely be used on ...
1
vote
1answer
80 views

Invoking a method via reflection causes System.MissingMethodException

I am loading an assembly dynamically and invoking a static method from it. The problem arises when the method uses a reference which is not trivial (e.g. mscorlib or System.Core) - I get ...
1
vote
1answer
66 views

“Inject” an operator into an existing type

Scriptsharp uses mscorlib 0.7.0.0 which has an implicit operator System.Number on an int32. I understand the reason why it's there although I imagine that the compiler can handle the conversion in ...
1
vote
1answer
107 views

Mapping Composite Object using Reflection and ValueInjecter

Maybe this question, always asked in this forum, but I don't find the one that I need. My problem is I have a composite class like this class Customer { private int Id { set; get; } private ...
1
vote
2answers
168 views

How to call static method from ASP.NET MVC controller in C#

GetMethod does not find public static method if called from ASP .NET MVC controller. (From console application it work OK). To solve this dummy SaveEntityGenericWrapper method is used. How to remove ...
1
vote
1answer
57 views

System.Windows.PropertyPath - can this class help me with reflection on deep-nested properties (types)?

I've been sitting lately on the topic of Reflection, mainly with the purpose of instantiating a New class and setting properties on fields.. By path... Where, for example I might have a class called ...
1
vote
1answer
28 views

How can I delete the many-to-many relationship between two dynamic objects?

I want to delete the many-to-many relationship between two dynamic entities. I've seen examples using dummy objects, but they were not dynamic. I will not know the object or the name of the ...
1
vote
1answer
60 views

System.Reflection no methods

I'm trying to enumerate all methods in an assembly and add them to nodes in a treeview: private void bOpen_Click(object sender, EventArgs e) { var ofd = new OpenFileDialog(); ...
1
vote
4answers
154 views

Get object by reflection

I'm looking for mechanism in c# works like that: Car car1; Car car2; Car car = (Car)SomeMechanism.Get("car1"); car1 and car2 are fields So I want to get some object with reflection, not type :/ ...
1
vote
1answer
412 views

Get Types in assembly (error: System.Reflection.ReflectionTypeLoadException)

I´m receiving an Exception of type "Exception Details: System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more ...
1
vote
3answers
89 views

.Net/C# Reflection--Populating ComboBox

Greetings all, I have a list of "Types" meeting a certain critera that I obtained through reflection. Each of the types is a different feature that the user will potentially choose at runtime. If ...
1
vote
3answers
56 views

Reflecting Over Nested Instances without Creating New Instance

I have been struggling a bit with some reflection code that I though would be simple. Essentially, I have an interface that defines a method. Then, I have an abstract class that provides a base ...
1
vote
0answers
149 views

How to load executable configuration which is spread across multiple config files?

I have a Windows application called TechReader. Its configuration file is TechReader.exe.config. Some parts of the configuration are kept in other configuration files. So I refer to that config file ...
1
vote
2answers
269 views

Reflection and strong named assemblies

I have created a test project whose output will be strong named assembly. I have specified the SNK file name in the 'project -> properties - > Signing' section so that assembly will be strong named. ...
1
vote
1answer
76 views

get_PropertyName()/set_PropertyName() vs PropertyName?

I'm using reflection on the assembly of a public API I am working with along with System.CodeDOM to generate some code that will extract information through the API. In part of my auto-generated code ...
1
vote
2answers
149 views

System.Reflection.PropertyInfo Array

After Getting a System.Reflection.PropertInfo array for a class- Does anyone know how or if this array is sorted or do I have to Array.Sort(MySortMethods/Params)?
1
vote
2answers
447 views

Load an EXE file and run it from memory using C#

Im trying to run exes from memory such as outlined in this article. I can run any .net/managed exes quite easily. But I cannot run exes such as notepad or calc.exe. How can I get it so I can also run ...
1
vote
2answers
386 views

Saving Types generated via Reflection.Emit as code file (.cs) instead of saving it in .dll files

Before start let me tell my experience: I am experienced with C#.NET, web services, XML part and few more. Reflection is something new to me, though I have read extensively on it and tried out some ...
1
vote
3answers
72 views

How can I store all the properties of a class in an array of objects?

Let's say I've a class myClass which has few properties, such as property1, property2, perperty3, etc. Now, I'd like to populate an array with each of those properties so that, I can access each of ...
1
vote
2answers
809 views

Reflection - setting Type of returned obj?

I am populating different types objects with datarows with each attrivute of the relevant object = to the similiarly name field in the datarow. I'd like to use a generic function to do this. How do I ...
1
vote
2answers
2k views

Best way to get a Type object from a string in .NET

What is the best way to convert a string into a Type object in .NET? Issues to consider: The type may be in a different assembly. The type's assembly may not be loaded yet. This is my attempt, ...
0
votes
1answer
30 views

Unique Validation Attribute - Using Reflection to Work For Any Property of Any Type

I'm trying to make my own unique data annotation that will work across any property for any type i apply it to. So far i have come up with the following: public class UniqueAttribute : ...
0
votes
1answer
27 views

Deep find property type in a class instance

I have a method which parses the xml and creates an object of a specified type from that xml. This is all done using generics so as to have a common method for all types. My issue is that I want to ...
0
votes
2answers
41 views

Reflection Type Adapt

I have a problem with reflection, basically i need to call a method of Class like this: public Int32 addNumer (Int32 a, Int32 b) { return (a+b); } And i need to call it with Reflection, because ...
0
votes
0answers
42 views

Generic type comparison for EntityTypeConfiguration failing

I tried the following conditions: genericType.Equals(typeof(EntityTypeConfiguration<>) genericType == typeof(EntityTypeConfiguration<>) Both are failing. genericType has the following ...
0
votes
2answers
67 views

Reflection error when creating an instance of a form

I've been experimenting with an application that will scan an assembly, check for any classes that are forms and then see what members they have. The code I'm using to query the assemblies is: ...

1 2