A ParameterInfo reflection wrapper.

Namespace:  Gallio.Common.Reflection
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public interface IParameterInfo : ISlotInfo, 
	ICodeElementInfo, IMirror, IEquatable<ICodeElementInfo>, IEquatable<ISlotInfo>, 
	IEquatable<IParameterInfo>
Visual Basic (Declaration)
Public Interface IParameterInfo _
	Implements ISlotInfo, ICodeElementInfo, IMirror, IEquatable(Of ICodeElementInfo),  _
	IEquatable(Of ISlotInfo), IEquatable(Of IParameterInfo)

Remarks

This wrapper enables reflection-based algorithms to be used against code that may or may not be loaded into the current AppDomain. For example, the target of the wrapper could be an in-memory code model representation.

See Also