Hello,
is there any advantage of marking function as @property??


class Foo {
    void objectValue(Object value) { }
    Object objectValue() { }
}



auto foo = new Foo;

// This works fine without @property attribute
foo.objectValue = null;
auto bar = foo.objectValue;

Reply via email to