Ejemplo n.º 1
0
 /// <summary>
 /// Make sure that the visibility of types used in the signature of this member are high enough.
 /// Also make sure the visibility of the member is high enough to fullfill interface overrides
 /// </summary>
 public void EnsureVisibility()
 {
     ReturnType.EnsureVisibility(this);
     foreach (var p in Parameters)
     {
         p.ParameterType.EnsureVisibility(this);
     }
 }