Can property defined in Interface.

Answers were Sorted based on User's Feedback



Can property defined in Interface...

Answer / prashant k

Yes, We can define properties inside the interface without
implementation. e.g.

String GetName {get; set;}

Is This Answer Correct ?    21 Yes 0 No

Can property defined in Interface...

Answer / pramodgupta20

You can declare the property in interface and define it in
the class which implements the interface.

int GetUser{get; set;}

Is This Answer Correct ?    2 Yes 1 No

Can property defined in Interface...

Answer / nisha mac

yes you can declare the property inside interface but
implementation is mandatory otherwise it will throw error at
buid time saying you need to implement it.

Is This Answer Correct ?    0 Yes 0 No

Can property defined in Interface...

Answer / chandan kumar

No,We Can,t define property in Interface

Is This Answer Correct ?    1 Yes 17 No

Post New Answer

More C Sharp Interview Questions

Why delegates are type safe in c#?

0 Answers  


What does void do in c#?

0 Answers  


Can you pass parameters to destructors?

0 Answers  


What is a partial class in c#?

0 Answers  


What is null character in string?

0 Answers  






What is the difference between continue and break statement?

0 Answers  


Is and as keyword in c# net?

0 Answers  


What is writeline?

0 Answers  


What is mvc pattern in c#?

0 Answers  


Can hashtable have duplicate keys?

0 Answers  


Is it true that all c# types derive from a common base class?

0 Answers  


Why is c# good for games?

0 Answers  


Categories