On 09/09/2011 11:45 PM, Andrej Mitrovic wrote:
class Foo
{
     this()
     {
         value = true;
     }

     @property bool value() { return true; }
     @property void value(bool value) { }
}


class Foo
{
    this()
    {
        value = true;
    }

    @property bool value() const { return true; } // const
    @property void value(bool value) { }
}

Reply via email to