Ejemplo n.º 1
0
 /// <summary>
 /// Copy all given method overrides into this object.
 /// </summary>
 /// <param name="other">
 /// The overrides to be copied into this object.
 /// </param>
 public void AddAll(MethodOverrides other)
 {
     if (other != null)
     {
         Overrides.AddAll(other.Overrides);
         _overloadedMethodNames.AddAll(other._overloadedMethodNames);
     }
 }