What is the output from the following code
class A { sealed int a = 5; }
compile time error
In C#, you cannot use sealed for fields.
In this case, you could use readonly.