<small id='XPYzr'></small><noframes id='XPYzr'>

      <tfoot id='XPYzr'></tfoot>
    1. <i id='XPYzr'><tr id='XPYzr'><dt id='XPYzr'><q id='XPYzr'><span id='XPYzr'><b id='XPYzr'><form id='XPYzr'><ins id='XPYzr'></ins><ul id='XPYzr'></ul><sub id='XPYzr'></sub></form><legend id='XPYzr'></legend><bdo id='XPYzr'><pre id='XPYzr'><center id='XPYzr'></center></pre></bdo></b><th id='XPYzr'></th></span></q></dt></tr></i><div id='XPYzr'><tfoot id='XPYzr'></tfoot><dl id='XPYzr'><fieldset id='XPYzr'></fieldset></dl></div>

      • <bdo id='XPYzr'></bdo><ul id='XPYzr'></ul>

        <legend id='XPYzr'><style id='XPYzr'><dir id='XPYzr'><q id='XPYzr'></q></dir></style></legend>

        覆盖属性设置器和获取器

        Override property setter and getter(覆盖属性设置器和获取器)
        <i id='ejU2f'><tr id='ejU2f'><dt id='ejU2f'><q id='ejU2f'><span id='ejU2f'><b id='ejU2f'><form id='ejU2f'><ins id='ejU2f'></ins><ul id='ejU2f'></ul><sub id='ejU2f'></sub></form><legend id='ejU2f'></legend><bdo id='ejU2f'><pre id='ejU2f'><center id='ejU2f'></center></pre></bdo></b><th id='ejU2f'></th></span></q></dt></tr></i><div id='ejU2f'><tfoot id='ejU2f'></tfoot><dl id='ejU2f'><fieldset id='ejU2f'></fieldset></dl></div>
        • <small id='ejU2f'></small><noframes id='ejU2f'>

              <bdo id='ejU2f'></bdo><ul id='ejU2f'></ul>
              <legend id='ejU2f'><style id='ejU2f'><dir id='ejU2f'><q id='ejU2f'></q></dir></style></legend>
                  <tbody id='ejU2f'></tbody>

                  <tfoot id='ejU2f'></tfoot>
                • 本文介绍了覆盖属性设置器和获取器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  有没有办法用属性覆盖自动属性的 setter 和 getter?

                  Is there a way to override the setter and getter of an auto property with an attribute?

                  像这样:

                  [CustomAttribute]
                  public int Value { get; set; }
                  

                  ...

                  public class CustomAttibute : Attribute
                  {
                      public override NotExistingPropertySetter(object value)
                      {    
                          if (((int)value) < 10 )
                          {
                              value = 10;
                          }
                      }
                  }
                  

                  推荐答案

                  没有.属性永远不会执行".您需要构建一个构造来查找属性并在找到它时执行某些操作.

                  No. An attribute is never "executed". You would need to build a construct looking for the attribute and doing something if it's found.

                  .NET 中的 AoP(面向方面编程)只能通过使用 PostSharp 等第三方软件来实现.

                  AoP (aspect oriented programming) in .NET is only possible by using third party software like PostSharp.

                  这篇关于覆盖属性设置器和获取器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
                  Parameter count mismatch with Invoke?(参数计数与调用不匹配?)
                  How to store delegates in a List(如何将代表存储在列表中)
                  How delegates work (in the background)?(代表如何工作(在后台)?)
                  C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)
                  Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)

                  <small id='Sb9Vr'></small><noframes id='Sb9Vr'>

                    <tfoot id='Sb9Vr'></tfoot>

                    1. <legend id='Sb9Vr'><style id='Sb9Vr'><dir id='Sb9Vr'><q id='Sb9Vr'></q></dir></style></legend>
                        • <bdo id='Sb9Vr'></bdo><ul id='Sb9Vr'></ul>

                              <tbody id='Sb9Vr'></tbody>
                          • <i id='Sb9Vr'><tr id='Sb9Vr'><dt id='Sb9Vr'><q id='Sb9Vr'><span id='Sb9Vr'><b id='Sb9Vr'><form id='Sb9Vr'><ins id='Sb9Vr'></ins><ul id='Sb9Vr'></ul><sub id='Sb9Vr'></sub></form><legend id='Sb9Vr'></legend><bdo id='Sb9Vr'><pre id='Sb9Vr'><center id='Sb9Vr'></center></pre></bdo></b><th id='Sb9Vr'></th></span></q></dt></tr></i><div id='Sb9Vr'><tfoot id='Sb9Vr'></tfoot><dl id='Sb9Vr'><fieldset id='Sb9Vr'></fieldset></dl></div>