Ejemplo n.º 1
0
        internal override void SwitchToExplicitImplementation()
        {
            Attributes = ExplicitImplementationAttributes;
            if (Standalone == false)
            {
                Attributes |= MethodAttributes.SpecialName;
            }

            name = MetaTypeElementUtil.CreateNameForExplicitImplementation(sourceType, Method.Name);
        }
Ejemplo n.º 2
0
 internal override void SwitchToExplicitImplementation()
 {
     name = MetaTypeElementUtil.CreateNameForExplicitImplementation(sourceType, name);
     if (setter != null)
     {
         setter.SwitchToExplicitImplementation();
     }
     if (getter != null)
     {
         getter.SwitchToExplicitImplementation();
     }
 }
Ejemplo n.º 3
0
 internal override void SwitchToExplicitImplementation()
 {
     name = MetaTypeElementUtil.CreateNameForExplicitImplementation(sourceType, name);
     adder.SwitchToExplicitImplementation();
     remover.SwitchToExplicitImplementation();
 }