struct or interface contain property or not?
struct or interface contain property or not?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Nanhe SiddiquePosted May 25, 2015, 12:27 AM
Pankaj Kumar ChoudharyPosted May 24, 2015, 7:10 PM
{
string Stm;
public Class3(string st):base(st)
{
Stm = st;
Console.WriteLine("Class3 Constructor");
}
}
interface Itf
{
public string stm
{get;set;
}
}
ajay pandeyPosted May 24, 2015, 3:12 PM
Dipankar BiswasPosted May 24, 2015, 3:04 PM