Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


can we create an empty interface with no definitions? If
so, how it should be called in the class?

Answers were Sorted based on User's Feedback



can we create an empty interface with no definitions? If so, how it should be called in the class?..

Answer / rajat

Yes, we can create an empty interface in C#. Since the
interface does not have any method, no need to implement
any method in the class.

Is This Answer Correct ?    8 Yes 0 No

can we create an empty interface with no definitions? If so, how it should be called in the class?..

Answer / bindu sharma

Yes we can create an empty interface.Empty interface is
called a marker interface.It is used by Comiler so we don't
need to call it explicitly.As there is no method in marker
interface,So we don't need to call it.

Is This Answer Correct ?    8 Yes 1 No

can we create an empty interface with no definitions? If so, how it should be called in the class?..

Answer / mohit bhandari

Yes we can create an empty interface.Empty interface is
called a marker interface.These interfaces are generally
used as way of identifying a group of types. If this
identification will occur at runtime, the correct way to
accomplish this is to use a custom attribute. Use the
presence or absence of the attribute, or the attribute's
properties, to identify the target types.As there is no
method in marker interface,So we don't need to call it.

Is This Answer Correct ?    7 Yes 1 No

Post New Answer

More C Sharp Interview Questions

In c#.Net Application For DataGridview binding which method is faster in below two case?Why..? 1)looping-Using For loop 2)Databinding direct using Dataset

4 Answers   CTS,


What is the use of the static constructor? When static constructor gets compiled?

1 Answers   Syntel,


What is constructors, explain with syntax

0 Answers  


Example of value type and refarnce type

4 Answers   Synechron,


How do you implement thread synchronization (object.wait, notify,and criticalsection) in c#?

0 Answers  


What is a hash table c#?

0 Answers  


Is a char?

0 Answers  


Is c# strongly typed?

0 Answers  


What is the difference between var and dynamic types in c# 4.0?

0 Answers  


Consider the following pieces of C# code: a. interface I1 {/*......*/} interface I2 {/*......*/} struct Point : I1,I2 {/* ..... */} b. struct Book{ int bookId; struct Book b; } c. using M=Mystruct; struct MyStruct{ int id; } class MyClass{ static void Main(string[] args){ M m = new M(); } } d. struct Sample{ Sample ref x; } Which of the above are correct? Choose one of the options below. a, c and d are right a only right a and c are right d only wrong None of the listed options

3 Answers  


Can you inherit multiple interfaces?

3 Answers  


Can an interface inherit class/abstract class.

1 Answers   Synechron,


Categories