Type.IsByRefLike Proprietà
Definizione
Ottiene un valore che indica se il tipo è una struttura simile a byref.Gets a value that indicates whether the type is a byref-like structure.
public:
virtual property bool IsByRefLike { bool get(); };
public virtual bool IsByRefLike { get; }
member this.IsByRefLike : bool
Public Overridable ReadOnly Property IsByRefLike As Boolean
Valore della proprietà
true
Se Type è una struttura di tipo ByRef; in caso contrario, false
.true
if the Type is a a byref-like structure; otherwise, false
.
Commenti
Le strutture di tipo ByRef vengono dichiarate usando la ref struct
parola chiave in C#.Byref-like structures are declared using ref struct
keyword in C#. Un'istanza della struttura di tipo ByRef non può essere inserita nell'heap gestito.An instance of the byref-like structure can't be placed on the managed heap. Per altre informazioni, vedere struct di riferimento.For more information, see Ref struct.