-
Remoting
What is remoting? How is it useful?
-
How to get the capacity of an array in C#
A) Count PropertyB) Length PropertyC) Ubound method
-
Public Members
Why do we use properties rather than public members?
-
AutoPostBack Property
There is Cancel button and OK button on page. When we click Cancel button it skips all validation controls and goes to next page.(a)Page AutoPostback of Cancel is True.(b)Page AutoPostback of Cancel is False.(c)Page AutoPostback of OK is True.(d)Page AutoPostback of OK is False.Which option is correct?
-
Explicit Implimentation
What do you mean by Explicit Interface Implimentation? What's Interface Mapping?
-
Postbackurl and Navigateurl
What is difference between "Session" and "Session" Objects? What is the use of "postbackurl" and "navigateurl" and the differences between those two things?
-
-
-
Uses of delegates
What is a delegate in C# and when are they commonly used in Windows Forms programming?
-
-
-
If we need to compare X to a value 3 how do we do it in C#
A) If (X==3)B) If (X=3)C) If (X.equals(3) )
-
Which of the following is wrong with regards to Out keyword
A) For Out parameters a variable can be passed which has not initializedB) If Out parameters are not assigned a value with in the function body compiler throws errorC) The variable passed as a Out parameter must be static
-
Assembly version information is stored in the:
Skill/Topic: AdvancedA) ManifestB) Garbage CollectorC) Heap
-
C# Serializable Keyword
What is the use of serializable keyword in C#?
-
-
Can you prevent your class from being inherited and becoming a base class for some other classes?
Yes, that is what keyword sealed in the class definition is for. The developer trying to derive from your class will get a message: cannot inherit from Sealed class WhateverBaseClassName. It is the same concept as final class in Java.
-
Data grid
How dotnet works in the background when we fetch data from data base to the grid on the form?
-
Unsafe Keyword
Why we use pointer in C#.NET with Unsafe keyword?
-
C# Static Objects
How to create static objects in C#?
C# Interview Questions
Ans