A MethodInfo reflection wrapper.

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

Syntax

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

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