What is the difference between readonly and constant in c#
Answers were Sorted based on User's Feedback
Answer / karunakar
readonly value can be changed at runtime but constant never
change entire application
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / anver sadat
A const must be initialized at the time of its creation. A
readonly field can be assigned to once in the class
constructor allowing you to pass in the value at run-time.
Declaring fields as const protects both you and other
programmers from accidentally changing the value of the
field. Also note that with const fields, the compiler
performs some optimization by not declaring any stack space
for the field. The readonly keyword is similar to const,
with two exceptions. First, the storage of a readonly field
is the same as a regular read-write field, and thus there is
no performance benefit. Secondly, readonly fields can be
initialized in the constructor of the containing class.
Use of the 'static' keyword, however, associates a field
with a class itself, so there will only ever be one such
field per class, regardless of the number of the class
instances (and the static field will exist even if there are
no class instances). A static field need not be constant,
however; it can be changed by code.
| Is This Answer Correct ? | 5 Yes | 0 No |
What is the use of ienumerable in c#?
What is a linked list c#?
What is the use of static abstract class
5 Answers Karur Vysya Bank KVB, Target,
what optimizations does the c# compiler perform when you use the /optimize+ compiler option?
Explain about Oops concept
What is public void in c#?
Can we have static indexer in c#?
Can you put two constructor with the same structure in a class?
What is the name of the implicit input parameter of a set accessor for any property?
Why do we need static in c#?
Is type nullable c#?
in the nunit test framework, which attribute must adorn a test class in order for it to be picked up by the nunit gui?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)