MetalamaAPI documentationAspect APIMetalama.​Framework.​AspectsmetaThis­Type
Open sandboxFocus

meta.ThisType Property

ThisType

Gets a dynamic object that must be used to get access to static members of the type (e.g. meta.ThisStatic.MyStaticMethod()). The ThisType property exposes the state of the target type as it is after the application of all aspects. It corresponds to InvokerOptions.Final. To access the prior layer (or the base type, if there is no prior layer), use BaseType. To access instance members, use This.

Declaration
public static dynamic ThisType { get; }
Property Value
Type Description
System.Object
See Also