日期:2014-05-18 浏览次数:20979 次
public interface IMyInterface
{
int MyIntProperty
{
get;
}
}
public class MyBaseClass : IMyInterface
{
protected int myint;
public int MyIntProperty
{
get
{
return myint;
}
protected set
{
myint = value;
}
}
}