Here\'s the deal: I have a report designer where users can create reports based on some predefined datasets. They can select a set of columns to include in the report and then, when the report is ran
I know it sounds like a stupid question, but how safe is your API if 开发者_开发问答you can access private properties and change them?What\'s the point of having locks on your door when people can jus
I\'m trying to get some information from an msi file I used: Type installerType = Type.GetTypeFromProgID(\"WindowsInstaller.Installer\");
This is a dirty thing to do, and I feel dirty for doing it: public abstract class InterestRate { // irrelevant details
What\'s the reason for not being able to use static methods,开发者_Go百科 instance methods, etc as a argument to an attribute in .NET?
Lets say I have a inheritance tree of interfaces: IParent > IChild > IGrandChild How would I: Find a class that implements IParent
1.. Is there any performance overhead caused by the usage of attributes? Think for a class like: public class MyClass
Take the following property: public string Foo { get; private set; } Using reflection, I can still set the value of this property from outside the owning class.Is there a way to prevent this?Removi
I am currently developing an application where you can create \"programs\" with it without writing source code, just click&play if you like.
I have various projects that use reflection to access and invoke private or internal members in some of the framework classes.