Dela via


Nyckelordet ref

Du använder nyckelordet ref i följande kontexter:

  • I en metodsignatur och i ett metodanrop skickar du ett argument till en metod efter referens.
public void M(ref int refParameter)
{
    refParameter += 42;
}
  • I en metodsignatur returnerar du ett värde till anroparen med referens. Mer information finns i ref return.
public ref int RefMax(ref int left, ref int right)
{
    if (left > right)
    {
        return ref left;
    }
    else
    {
        return ref right;
    }
}
public void M2(int variable)
{
    ref int aliasOfvariable = ref variable;
}
public ref int RefMaxConditions(ref int left, ref int right)
{
    ref int returnValue = ref left > right ? ref left : ref right;
    return ref returnValue;
}
public ref struct CustomRef
{
    public ReadOnlySpan<int> Inputs;
    public ReadOnlySpan<int> Outputs;
}
public ref struct RefFieldExample
{
    private ref int number;
}
  • I en allmän typdeklaration för att ange att en typparametertyper allows ref struct .
class RefStructGeneric<T, S>
    where T : allows ref struct
    where S : T
{
    // etc
}