A FieldInfo reflection wrapper.

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

Syntax

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

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