HomeCSharpC# Error CS1648 – Members of readonly field ‘{0}’ cannot be modified (except in a constructor or a variable initializer)

C# Error CS1648 – Members of readonly field ‘{0}’ cannot be modified (except in a constructor or a variable initializer)

C# Error

CS1648 – Members of readonly field ‘{0}’ cannot be modified (except in a constructor or a variable initializer)

Reason for the Error & Solution

Members of readonly field ‘identifier’ cannot be modified (except in a constructor or a variable initializer)

This error occurs when you attempt to modify a member of a field which is readonly where it is not allowed to be modified. To resolve this error, limit assignments to readonly fields to the constructor or variable initializer, or remove the readonly keyword from the declaration of the field.

Example

The following sample generates CS1648:

// CS1648.cs
public struct Inner
{
    public int i;
}

class Outer
{
    public readonly Inner inner = new Inner();
}

class D
{
    static void Main()
    {
        var outer = new Outer();
        outer.inner.i = 1;  // CS1648
    }
}

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...