Boo.Lang.Compiler.Steps.ProcessMethodBodies.IsWriteOnlyProperty C# (CSharp) Method

IsWriteOnlyProperty() private method

private IsWriteOnlyProperty ( IProperty property ) : bool
property IProperty
return bool
        private bool IsWriteOnlyProperty(IProperty property)
        {
            return null == property.GetGetMethod();
        }
ProcessMethodBodies