Const: Const is nothing but "constant", a variable of which the value is constant but at compile time. And it's mandatory to assign a value to it. By default a const is static and we cannot change the value of a const variable throughout the entire program.Readonly : Readonly is the keyword whose value we can change during runtime or we can assign it at run time but only through the non-static constructor. Not even a method. Readonly can set value in non static constructor Static ReadOnly: A Static Readonly type variable's value can be assigned at runtime or assigned at compile time and changed at runtime. But this variable's value can only be changed in the static constructor. And cannot be changed further. It can change only once at runtime.
we can make readonly as static but cannot make const as static bcz by default const is static.
Yes , we can make readonly as satatic but not to const . if we make readonly as static so while changing the variable value we need the static constructor as well .Thanks, Surya Prakash Pandey,