Exemplo n.º 1
0
 internal override void SwitchToExplicitImplementation()
 {
     name = string.Format("{0}.{1}", sourceType.Name, name);
     if (setter != null)
     {
         setter.SwitchToExplicitImplementation();
     }
     if (getter != null)
     {
         getter.SwitchToExplicitImplementation();
     }
 }
Exemplo n.º 2
0
 internal override void SwitchToExplicitImplementation()
 {
     name = MetaTypeElementUtil.CreateNameForExplicitImplementation(sourceType, name);
     if (setter != null)
     {
         setter.SwitchToExplicitImplementation();
     }
     if (getter != null)
     {
         getter.SwitchToExplicitImplementation();
     }
 }
Exemplo n.º 3
0
 public override void SwitchToExplicitImplementation()
 {
     SwitchToExplicitImplementationName();
     if (setter != null)
     {
         setter.SwitchToExplicitImplementation();
     }
     if (getter != null)
     {
         getter.SwitchToExplicitImplementation();
     }
 }
Exemplo n.º 4
0
 internal override void SwitchToExplicitImplementation()
 {
     name = MetaTypeElementUtil.CreateNameForExplicitImplementation(sourceType, name);
     adder.SwitchToExplicitImplementation();
     remover.SwitchToExplicitImplementation();
 }
Exemplo n.º 5
0
 public override void SwitchToExplicitImplementation()
 {
     SwitchToExplicitImplementationName();
     adder.SwitchToExplicitImplementation();
     remover.SwitchToExplicitImplementation();
 }
 internal override void SwitchToExplicitImplementation()
 {
     name = string.Format("{0}.{1}", sourceType.Name, name);
     adder.SwitchToExplicitImplementation();
     remover.SwitchToExplicitImplementation();
 }