IManagedReferenceType

Overview

A managed reference is a "by ref" type in .NET, used for var/out parameters. Managed references are automatically created. Although they can be used manually, they're only allowed in parameter types (in which case it would be a var or out parameter), or on the stack (as a local).

Location


Properties


SubType

The sub-type of this managed reference

 

property SubType: IType read;

 

IType SubType { get; }

 

var SubType: IType { get{} }

 

IType SubType { __get; }

 

ReadOnly Property SubType() As IType