0
votes
1answer
24 views

Loading managed assemblies in a unit test project seems to slow Visual Studio 2010 down

I am loading multiple managed assemblies in a unit test. The assemblies are from within the solution and not third party, not that it matters. I notice that Visual Studio tends to increase memory ...
0
votes
0answers
17 views

Writing data driven reflection based tests to ensure design completeness

When writing software I'm often forced to at some point to make a decision that involves a design pattern of "by convention" naming and behavioral patterns. This normally makes me feel kind of slimy ...
0
votes
2answers
75 views

.NET Attributes on Property

If I have: [SomeAttr] public Int32 SomeProperty { get; set; } Is it possible for SomeAttr to tell what property it's tacked onto? Is it atleast possible to tell what Type the property is?
0
votes
2answers
35 views

Member wise compare - generic reflection on nested objects

I'm attempting write a generic method to do memberwise compare on user defined objects which potentially (almost always) have several levels of nesting. I'm working off of the example found here with ...
-3
votes
0answers
50 views

Events Inside the form within the dll [closed]

Inside my project, which is a class library, there are two files, a class file and a windows form. In the windows form, I have different controls such as textboxes and labels. My problem is that, the ...
1
vote
3answers
90 views

C# Generics, casting generic list to known parent class?

I'm trying to cast a list of objects to its parent using generics. I have classes such as: Entity Node OtherClass Where Node/OtherClass inherits from Entity. What I want to do is something like ...
1
vote
1answer
22 views

Interpreting MethodBody.ExceptionHandlingClauses collection

I am using reflection to analyse a method's exception handling blocks with the [ExceptionHandlingClauses] property of the [MethodBody] class. I could not figure out from MSDN Documentation how this ...
2
votes
2answers
57 views

Determine if a derived class implements a generic interface with itself as the generic parameter

I have seen answers on SO with similar questions but did not find one addressing all criteria below. How can I determine whether class B meets the following criteria when B inherits from A: [B] ...
1
vote
1answer
40 views

Method analysis using Reflection and CodeDom

The context of this question is too elaborate to describe here and will likely adversely affect responses so I am not including it. I want to assert certain things about a method in a unit test. Some ...
2
votes
4answers
293 views

Convert List<double[]> to List<T>

I have a list of doubles List<double[]> which I want to convert to a List<T> where T is a class. The array of double contains 17 values e.g. [1.0, 2.0, 3.0, 4.0, 5.0,.. 17.0 ]. Then I ...
0
votes
3answers
66 views

Verifying code against template patterns using reflection

I am working on a large project where a base class has thousands of classes derived from it (multiple developers are working on them). Each class is expected to override a set of methods. I first ...
1
vote
1answer
51 views

Determining derived classes through reflection

I want to process the Methods of classes derived from class A. Class A and the derived classes reside in different assemblies. I use reflection to get all System.Type's from the derived assembly and ...
2
votes
1answer
51 views

What are GetField, SetField, GetProperty and SetProperty in BindingFlags enumeration?

I have no idea what these are for. The documentation is not very clear: GetField Specifies that the value of the specified field should be returned. SetField Specifies that the value of the ...
0
votes
1answer
26 views

How can I retrieve all custom attributes on a class

I'm trying to retrieve a list all attributes applied to my class. I can see the Attribute.GetCustomAttributes() series of methods, but I can only see methods to retereive all attributes for ...
1
vote
2answers
66 views

.NET: What's the difference between GetDeclaredProperty() & GetProperty()?

I referred to the MSDN library but still remain confused. So what's the difference between the two methods? Could anyone give me an example? Thx in advance. :)
2
votes
3answers
120 views

Get user-friendly name for generic type in C#

Is there an easy way without writing a recursive method which will give a 'user friendly' name for a generic type from the Type class? E.g. For the following code I want something like ...
11
votes
3answers
281 views

Class not inheriting from object?

I am working on a method that is using reflection to inspect parameter types of methods. This methods iterates through the ParameterInfo's and is doing something with the types of those parameters. I ...
1
vote
3answers
53 views

Using reflection and a List<>, can one return an array of specific properties via an extension method?

I'm not certain of the terminology so forgive my lack of clarity: Given a List<someclass> collection, can one create an extension method utilizing refection that allows one to return an array of ...
3
votes
1answer
54 views

Set the Assembly Version and get it by reflection - all the time version 1.0.0.0?

I had a problem with setting properly the Assembly version and then obtaining it by the reflection. I found a workaround, but I am still curious why it behaves like this... I have a Class Library ...
0
votes
1answer
45 views

Silverlight: Load and bind Xaml dynamically

I have a child window which loads xaml dynamically and now I want to do some bindings in order to communicate messages between the child window and the parent. Because the project is plugin-based and ...
0
votes
2answers
79 views

Setting Property Value

I need to get and set a property value dynamically I read this Get property value from string using reflection in C# and did a below code for getting a value public Object GetPropValue(Object obj, ...
0
votes
1answer
27 views

Access Property Value using Reflection

I have an object public class School { public Employee Emp{get;set;} public string City{get;set;} } public class Employee { public string Name{get;set;} } Using reflection I need to fetch this ...
5
votes
1answer
54 views

How do I find all assemblies containing type/member matching a pattern?

I have a folder (possibly, with nested sub-folders) containing thousands of files, some of them are DLLs, and some of those DLLs are .NET assemblies. I need to find all assemblies containing ...
8
votes
2answers
72 views

How to create a delegate from a MethodInfo?

I need a method that takes a MethodInfo instance representing a non-generic static method with arbitrary signature and returns a delegate bound to that method that could later be invoked using ...
2
votes
3answers
89 views

C#. Check if Type is .NET Framework, not my own type

Im using reflection to check attributes of the methods. Going deeper and deeper using reflection and checking classes inheritance. I need to stop when class is .NET Framework, not my own. How i can ...
5
votes
1answer
36 views

How do I recognize a System.Type instance representing SZ-Array?

CLR uses distinct System.Type instances to represent SZ-arrays (Single-dimensional, Zero-based, aka vectors) and non-zero-based arrays (even if they are single-dimensional). I need a function that ...
0
votes
1answer
37 views

How do I get DataContract attribute from PropertyInfo at the class level?

I have an extension method that I use attempt to extract some metadata from an object, such as this: public static string ToTypeName(this object obj) { string name; var asType = ...
0
votes
3answers
33 views

Get assembly path from MethodInfo

I have a MethodInfo from a method out of a class library. Is it possible to determine the path where the assembly is located with just that info? void foo(MethodInfo methodInfo) { // Get the ...
1
vote
3answers
72 views

Calling CreateInstance causes thread error

I've created small portable library (reference, targeting: Windows, Windows 8, Windows Phone 7.5) for educational purposes. I've decided to use it in my small Windows 8 Metro style app. Unfortunately, ...
2
votes
2answers
43 views

Filter Type.GetProperties() where PropertyType.Name is in a List

I need to show only the properties that have names that are in the requiredfield list. I'm trying to do something like this but p.PropertyType.Name == x is not correct: Pricing pricing = new ...
1
vote
1answer
103 views

C# Reflection get Field or Property by Name

Is there a way to supply a name to a function that then returns the value of either the field or property on a given object with that name? I tried to work around it with the null-coalesce operator, ...
1
vote
4answers
61 views

Get custom property types using Reflection

Suppose I have a class (something like this): public class User { public Guid Id { get; set;} public DateTime CreationDate { get; set; } public string Name { get; set; } public UserGroup ...
1
vote
1answer
55 views

How to get MethodInfo for basic methods, not properties and events, via reflection? [duplicate]

I'm performing some reflective interrogation of an object. The code lists constructor(s), properties, and methods. GetMethods( ) returns property accessor/mutator methods and event add/remove methods. ...
1
vote
2answers
30 views

Given simple type T, get array type T[]

How can I get the type of Array of type T given T ? LinqPad-friendly snippet below: void Main() { Type t = typeof(string); Type tArray = GetArrayType(t); tArray.Dump(); // ...
0
votes
0answers
14 views

.NET Reflection policy exception

I have a strange problem: I deployed a .NET 2.0 application that uses reflection and I got a Policy Exception once I call Assembly.LoadFile. The error is the following: Could not load file or ...
2
votes
3answers
54 views

Difference between ParameterInfo.IsOptional and ParameterInfo.HasDefaultValue?

They both sound similar. From msdn: ParameterInfo.IsOptional Gets a value indicating whether this parameter is optional. This method depends on an optional metadata flag. This flag can be ...
3
votes
1answer
34 views

Difference between ParameterInfo.DefaultValue and ParameterInfo.RawDefaultValue

This is a follow-up question of How do I get default values of optional parameters? From documentation, DefaultValue: Gets a value indicating the default value if the parameter has a default ...
8
votes
1answer
100 views

Is it possible to design a C# class that when querying it through reflections will mark itself as positive IsValueType and positive IsClass?

Is it possible to design a C# class that when querying it through reflections will mark itself as positive IsValueType and positive IsClass? Or are they actually mutually exclusive markings? I know ...
0
votes
2answers
35 views

Change code inside a .net dll

I have a large .net solution with more than 20 projects. It consists of 1 executable and lots of dll's. A change to our SOE has broken the app. I need to be able to open the executable and one dll ...
0
votes
1answer
45 views

Class properties of certain generic type cast into generic type to execute methods

First I would like to apologize for the messy title. I'm not quite sure how to put it into words so I will describe the situation. I'm writing a comparison engine for our product, that is capable of ...
0
votes
1answer
96 views

How to create a checkbox for each possible enum value in Windows forms?

Say we have an enum Identifier {Name, Id, Number} and we want to provide user with a message like dialog with only checkboxes for each possible Identifier value and Ok button. On dialog confirmation ...
7
votes
2answers
54 views

Attempting to bind a dynamic method on a dynamically-created assembly causes a RuntimeBinderException

I have a handy utility method which takes code and spits out an in-memory assembly. (It uses CSharpCodeProvider, although I don't think that should matter.) This assembly works like any other with ...
1
vote
1answer
115 views

How can I convert an Class Object into String?

I have a class object that comes through a web service (WCF). The class has properties of type String and some custom Class Types. How can I get the Property Name and Properties Name of Properties ...
2
votes
1answer
76 views

How to implement dynamic feature in .net 3.5

How to implement this behavior in .NET 3.5, where there is no dynamic keyword. Guid CLSID_ShellApplication = new Guid("13709620-C279-11CE-A49E-444553540000"); Type shellApplicationType = ...
1
vote
1answer
87 views

C# generics wrapper generator

I'm looking for a code generator (preferably with source) that will allow me to generate wrapper classes (using reflection) for generic classes that i have in my code. I've done a bit of searching ...
2
votes
2answers
51 views

Does CallerMemberNameAttribute use reflection

You can use the CallerMemberName attribute to avoid specifying the member name as a String argument to the called method when implementing INotifyPropertyChanged interface. The question is does it ...
0
votes
2answers
60 views

Finding classes in a DLL that inherit from classes in an unavailable assembly

I'm developing a tool that loads add-ins into a piece of commercial software we use in my office. Add-ins for this software can be developed by creating a .NET assembly with classes that inherit from ...
15
votes
3answers
201 views

How to find all direct subclasses of a class with .NET Reflection

Consider the following classes hierarchy: base class A, classes B and C inherited from A and class D inherited from B. public class A {...} public class B : A {...} public class C : A {...} ...
1
vote
1answer
47 views

explicitly collect DynamicMethod

From MSDN: You can use the DynamicMethod class to generate and execute a method at run time, without having to generate a dynamic assembly and a dynamic type to contain the method. The ...
5
votes
1answer
61 views

Subscribe to an event of a loaded assembly

I am trying to load an assembly during run-time and subscribe to its events. In my scenario the dll file has an ADD method that gets two integers as arguments and raises an event with a custom event ...

1 2 3 4 5 36