Difference between the const and readonly
Illustrate the difference between the const and readonly?
Expert
The readonly keyword is distinct from the const keyword. The const field can just be initialized at the declaration of field. The readonly field can be initialized either at declaration or in a constructor. Thus, readonly fields can encompass various values based on the constructor used. As well, while a const field is a compile-time constant, the readonly field can be employed for runtime constants as in the given illustration:
public static readonly uint l1 = (uint) DateTime.Now.Ticks;
What is meant by the term Assembly?
Specify the operating systems over which the .NET Framework runs upon?
State the naming conventions essential for XML elements tags?
What do you mean by Cookie?
Give the basic syntax of LINQ query in Visual Basic as well as in C#.
Write few characteristics of ADO.NET Entity Framework 4.0.
Specify different ways of deployment which are supported by .NET Framework 4.0.
Explain the requirement of Timer control in the AJAX.
Explain what is meant by Procedure oriented language?
State the relationship between Class and an Object?
18,76,764
1922654 Asked
3,689
Active Tutors
1422266
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!