Search Results

0
votes

Reflectively Executing Code in .Net

you first need to create and compile a class with your code in it in memory, after it has been compiled you need to reflect against it and invoke the method in which your dynamic code lives, method …
1
vote

Testing if object is of generic type in C#

return list.GetType().IsGenericType; …
0
votes

C# How can I get the value of a string property via Reflection?

PropertyInfo propInfo = f.GetType().GetProperty("Bar"); object[] obRetVal = new Object[0]; string bar = propInfo.GetValue(tempObj,obRetVal) as string; …
0
votes

Using System.Attribute class

this is exactly how Serialization works so I would say your approach is reasonable. Another way you can approach this is to create a dictionary of PropertyNames and their Titles and then look up th …
1
vote

Reflection in C# — want a list of the data types of a class’ fields

this is how I did it, you want the FieldType which actually returns a Type instance. var members = typeof(TestMe).GetFields().Select(m => new …
0
votes

Finding out if a type implements a generic interface

If i understand your question correctly, this is what you are trying to do. If not, please explain further. public class MyType : ISomeInterface { } MyType o = new MyType(); if(o …
0
votes

C#: Retrieving and using an IntPtr* through reflection

To add to JaredPar's answer, take a look at Marshal class in .NET , it might have a lot of useful features for you. …
1
vote

Detect Class from Interface Type

When you do GetInerface, you're getting the interface only. What you need to do is only get the types that implement that interface like so. var theTypes = asm.GetTypes().Where( …
1
vote

Print full signature of a method from a MethodInfo

Unfortunately I don't believe there is a built in method that would do that. Your best be would be to create your own signature by investigating the MethodInfo class EDIT: I just di …
8
votes

detecting if type implements ICollection<T>

CustomCollection c = new CustomCollection(); bool implementICollection = c.GetType().GetInterfaces() .Any(x => x.IsGenericType && …