Boo.Lang.Compiler.Steps.ProcessMethodBodies.IsWriteOnlyProperty C# (CSharp) 메소드

IsWriteOnlyProperty() 개인적인 메소드

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