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;
Illustrate the term event bubbling?
Explain MaskedTextBox control? And also explain the function of Mask property?
Write down in brief the use of console application?
How one can create the ellipse, which is the non- rectangular window?
Illustrate cross-page posting in an ASP.NET and the function of Server.Transfer() method?
What is meant by DLR (Dynamic Language Runtime)?
Explain the requirement of Timer control in the AJAX.
Write down the different ways of hosting the WCF service?
Explain the ASP.NET AJAX?
Explain briefly about server-side comments and also write its syntax?
18,76,764
1935696 Asked
3,689
Active Tutors
1416391
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!