-
-
Delegates and Generics in c#
What is the advantage of using delegates and Generics in c# .
-
C# Calender Days
How to find out how many calender days are there between two dates in c#.net?
-
Advantages of static class over class ?
When to use static class and when to use normal class ?
-
'this' in C#
Explain about 'this' and where and when it should be used?
-
ByteArray Class
Write a class called ByteArray that implement allocating, reading and writing to an array of bytes. The runtime environment has a limitation. The maximum continuous memory size that it can allocated is 64k bytes. It can allocate many 64K ( or less) chunks. The ByteArray class should hide this limitation and support allocating arrays larger than 64K as in the following example :ByteArray ba = new ByteArray...
-
Reference variable of Interface
It is possible to create the reference variable of an Interface which is 100% abstract in nature.Then why it is not possible to create a reference of an Abstract class?
-
Describe the accessibility modifier protected internal.
It is available to derived classes and classes within the same Assembly (and naturally from the base class it is declared in).
C# Interview Questions
Ans