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