Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanted to ask is it possible to remove an attribute from class at runtime, like

public Class A
{
  public int num1 {get;set;}
  public int num2 {get;set;}
  public int num3 {get;set;}
}

Class A Obj = new A();

now at run time i wan to remove "num2" from obj. Is it possible?

Thanks.

share|improve this question
What you want to remove is called a property, not an attribute. – Anton Tykhyy May 5 '11 at 7:08
1  
No, it's not possible, so you should perhaps ask about what it is that you are trying to accomplish, instead of asking about the method that you thought that you could use to solve it. – Guffa May 5 '11 at 7:15
What exactly are you trying to do here? Are you sure you want to remove the num2 property entirely (breaking all other code that uses it?). Or perhaps you just dont want it to show up in intellisense... ? – MattDavey May 5 '11 at 7:51

4 Answers

This can't be done. Once compiled, a class definition is set.

share|improve this answer

Simple answer: No.
Why would you want to do that anyway?

share|improve this answer

This will make the property only exist when the application is running in debug mode:

public Class A
{
  public int num1 {get;set;}
#if DEBUG
  public int num2 {get;set;}
#endif
  public int num3 {get;set;}
}
share|improve this answer

As others said already, it's not possible.

Instead you can add another property e.g.

public List<string> ignoredProperties {get; set;}

Then at runtime add num2 to that list and check it for properties you should ignore.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.