I have this class:
TMyClass = class
public
function DoSomethingNice(const Value: string = 'Yes please!'): Boolean;
end;
Now, using RTTI, is it possible to get default value of parameter Value of method DoSomethingNice? if so, how?
I'm mostly interested in a D2010 solution, but XE will do also.