Tagged with objectoriented
C# syntax for creating an abstract property
public abstract int GetX { get;}Published in .NET on Wednesday, November 17th, 2004
protected internal access modifier
Here’s how you create a property (though it could be variable, method or I think even class) that can be see by things that subclass the object it belongs to and things that are in the same package: protected internal object myProperty { get { return m_property; } set { m_property = value; } } [...]Published in .NET on Wednesday, November 10th, 2004






