A member set provides reflection operations on members of an object or type.

Namespace:  MbUnit.Framework
Assembly:  MbUnit (in MbUnit.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
public sealed class MemberSet
Visual Basic (Declaration)
Public NotInheritable Class MemberSet

Remarks

The specific member that is chosen for a given operation depends on the operation arguments. For example, if a member set represents an overloaded method then the arguments to Invoke(array<Object>[]()[]) are used to select the specific overload to be invoked. If the overload cannot be determined automatically from the arguments, the client should use the WithSignature(array<Type>[]()[]) method to obtain a restricted member set given the method signature of the specific overload to be used then calling Invoke(array<Object>[]()[]) on the resulting member set.

Inheritance Hierarchy

System..::.Object
  MbUnit.Framework..::.Mirror..::.MemberSet

See Also