Answer Posted / 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 |
Post New Answer View All Answers
What is a console operator?
what is .NET framework architecture ??
Explain the difference between arraylist and array and in c#?
Is unboxing an implicit conversion?
What will be the output of the following code?
Which operator cannot be overloaded in c sharp?
Is var a data type?
Why are dynamic link library used over static one?
Can a constructor be private in c#?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
Why do we need constructors?
How do I run managed code in a process?
Can we customize the serialization process?
What is asynccallback c#?
What does mean c#?