Type.IsByRef Proprietà

Definizione

Ottiene un valore che indica se l'oggetto Type viene passato per riferimento.

public virtual bool IsByRef { get; }
public bool IsByRef { get; }

Valore della proprietà

Boolean

true se Type viene passato per riferimento; in caso contrario, false.

Implementazioni

Esempio

Nell'esempio seguente viene illustrato l'utilizzo IsByRef della proprietà per controllare se un tipo specificato viene passato per riferimento. Nell'esempio viene definita la classe MyTypeDelegator , che esegue l'override del HasElementTypeImpl metodo . La classe principale controlla la HasElementType proprietà e visualizza il tipo di elemento.

using System;
using System.Reflection;
public class MyTypeDelegator : TypeDelegator
{
    public string myElementType = null;
    private Type myType = null ;
    public MyTypeDelegator(Type myType) : base(myType)
    {
        this.myType = myType;
    }
    // Override Type.HasElementTypeImpl().
    protected override bool HasElementTypeImpl()
    {
        // Determine whether the type is an array.
        if(myType.IsArray)
        {
            myElementType = "array";
            return true;
        }
        // Determine whether the type is a reference.
        if(myType.IsByRef)
        {
            myElementType = "reference";
            return true;
        }
        // Determine whether the type is a pointer.
        if(myType.IsPointer)
        {
            myElementType = "pointer";
            return true;
        }
        // Return false if the type is not a reference, array, or pointer type.
        return false;
    }
}
public class Type_HasElementTypeImpl
{
    public static void Main()
    {
        try
        {
            int myInt = 0 ;
            int[] myArray = new int[5];
            MyTypeDelegator myType = new MyTypeDelegator(myArray.GetType());
            // Determine whether myType is an array, pointer, reference type.
            Console.WriteLine("\nDetermine whether a variable is an array, pointer, or reference type.\n");
            if( myType.HasElementType)
                Console.WriteLine("The type of myArray is {0}.", myType.myElementType);
            else
                Console.WriteLine("myArray is not an array, pointer, or reference type.");
            myType = new MyTypeDelegator(myInt.GetType());
            // Determine whether myType is an array, pointer, reference type.
            if( myType.HasElementType)
                Console.WriteLine("The type of myInt is {0}.", myType.myElementType);
            else
                Console.WriteLine("myInt is not an array, pointer, or reference type.");
        }
        catch( Exception e )
        {
            Console.WriteLine("Exception: {0}", e.Message);
        }
    }
}

Commenti

Per ottenere il tipo effettivo, dereferenziare il tipo passato per riferimento e quindi chiamare GetElementType su tale tipo.

Si applica a

Vedi anche