Can property defined in Interface.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Answer / chandan kumar
No,We Can,t define property in Interface
Is This Answer Correct ? | 1 Yes | 17 No |
Why delegates are type safe in c#?
What does void do in c#?
Can you pass parameters to destructors?
What is a partial class in c#?
What is null character in string?
What is the difference between continue and break statement?
Is and as keyword in c# net?
What is writeline?
What is mvc pattern in c#?
Can hashtable have duplicate keys?
Is it true that all c# types derive from a common base class?
Why is c# good for games?