You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This attribute can be applied to parameters of type System.Reflection.Assembly, System.Reflection.Type, System.Reflection.MethodBase. When the C# compiler sees parameter tagged with this attribute, it will provide default value for it, according to the caller context:
Caller info attribute for passing caller identity implicitly
Summary
This attribute can be applied to parameters of type
System.Reflection.Assembly
,System.Reflection.Type
,System.Reflection.MethodBase
. When the C# compiler sees parameter tagged with this attribute, it will provide default value for it, according to the caller context:System.Reflection.Assembly
:typeof(containing_type).Assembly
System.Reflection.Type
:typeof(containing_type)
System.Reflection.MethodBase
:MethodBase.GetMethodFromHandle(ldtoken containing_method)
Design meetings
The text was updated successfully, but these errors were encountered: