Esempio 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();
     }
 }
Esempio n. 2
0
 internal override void SwitchToExplicitImplementation()
 {
     name = MetaTypeElementUtil.CreateNameForExplicitImplementation(sourceType, name);
     if (setter != null)
     {
         setter.SwitchToExplicitImplementation();
     }
     if (getter != null)
     {
         getter.SwitchToExplicitImplementation();
     }
 }
Esempio n. 3
0
 public override void SwitchToExplicitImplementation()
 {
     SwitchToExplicitImplementationName();
     if (setter != null)
     {
         setter.SwitchToExplicitImplementation();
     }
     if (getter != null)
     {
         getter.SwitchToExplicitImplementation();
     }
 }
Esempio n. 4
0
 internal override void SwitchToExplicitImplementation()
 {
     name = MetaTypeElementUtil.CreateNameForExplicitImplementation(sourceType, name);
     adder.SwitchToExplicitImplementation();
     remover.SwitchToExplicitImplementation();
 }
Esempio 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();
 }