HomeCSharpC# 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

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

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...