简体   繁体   中英

Can you add a constraint that the Attribute can only be added to a property with public getter and setter in C#

In C#, you can limit the scope of an attribute with the AttributeTargetAttribute . This constraint is checked at compile time.

Is there a way to force that if the target is a AttributeTargets.Property , that both the getter and setter must be public?

Not at compile-time. If you did this via reflection in the attribute, then you could enforce it at runtime. My question is: why do you want to enforce this?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM