Re: Static function as member delegate's initial value?

2016-06-20 Thread Mike Parker via Digitalmars-d-learn
On Monday, 20 June 2016 at 13:54:22 UTC, Mike Parker wrote: The best you can do is assign it in a constructor. Well, 'initialize' it in a constructor.

Re: Static function as member delegate's initial value?

2016-06-20 Thread Mike Parker via Digitalmars-d-learn
On Monday, 20 June 2016 at 13:20:04 UTC, OpenJelly wrote: I've got a delegate as a member of a class and I want to give it a default value. I can assign it an initial value in each initializer of the class but I'd like to make my code more readable and assign it a function at the declaration.

Static function as member delegate's initial value?

2016-06-20 Thread OpenJelly via Digitalmars-d-learn
I've got a delegate as a member of a class and I want to give it a default value. I can assign it an initial value in each initializer of the class but I'd like to make my code more readable and assign it a function at the declaration. Trying to toDelegate the situation gives me the following