Computer Science C#
Which of the following is true for ReadOnly variables? Value will be assigned at compile time. Value can be assigned at runtime. Value will be assigned when it accessed first time Are the same as constants Func and Action are the types of ___. Utility function Delegate Event structs
Expert Answer
1. b) Value can be assigned at runtime.
In ReadOnly variable,A value can be assigned at runtime using Non-static Constructor where as a Static ReadOnly variable is used to assign a value at either run time or compile time.
2. b) Delegate