what is the main differnce between const,readonly and static
Answer Posted / vijay rana
const is used to create a constant value which will be
constant throuout the class
static is used for a commaon variable for all objects, it is
not part of a object, it is a part of class, every object
will share this value,
read,
there are many situation in which we want to intialize the
value of a constat variabl at run time, in which we can have
different values for different objects, with the help of
readonly we can define the value of any object at runtime
which will not be changed later
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Why do we use partial class in c#?
What's the c# syntax to catch any possible exception?
What is iqueryable?
Define collections?
Can mvc be used for desktop applications?
What is private and shared assembly?
Hello! How to do this: "Create manifest utility intended for creating update content files. Application should take a set of files as input parameter and generate XML based manifest file as output one." I use C# and vs.net 2003. It's urgent! Help please, thanks. Mayana
Is c and c# the same?
How do I open the console?
In c#, what will happen if you do not explicitly provide a constructor for a class?
Is c sharp open source?
What is the adv of using System.Text.StringBuilder over System.String?
How do you specify a custom attribute for the entire assembly?
What is the difference between integer and double?
if we are updating a database using thread, and mean while application crashes or thread being aborted then what will happen in Database? Rollback or Database will be updated? Please explain with different scenario.