Name

IExpando

Synopsis

This interface indicates a type whose members can be removed or added. The members are represented as System.Reflection.MemberInfo objects.

public interface IExpando : System.Reflection.IReflect {
// Public Instance Methods
   public FieldInfo AddField(string name);
   public MethodInfo AddMethod(string name, Delegate method);
   public PropertyInfo AddProperty(string name);
   public void RemoveMember(System.Reflection.MemberInfo m);
}

Get C# in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.