C# Error CS8150 – By-value returns may only be used in methods that return by value

C# Error

CS8150 – By-value returns may only be used in methods that return by value

Reason for the Error & Solution

By-value returns may only be used in methods that return by value

Example

The following sample generates CS8150:

// CS8150.cs (6,9)

class C
{
    ref int M()
    {
        return new();
    }
}

To correct this error

To return by value, refactor the method from being by reference. For example:

// CS8150.cs (6,9)

class C
{
    int M()
    {
        return new();
    }
}

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...