V
Visual Systems AB \(Martin Arvidsson\)
Hi!
I often come across situations where i have a major code string for
accessing objects, variables and so on
In delphi, you could enter:
With mainObj.ThisControl.ThisProperty do
begin
x := dsdsa;
end;
instead of mainObj.ThisControl.ThisProperty.x := dsdsa;
It it possbile to do this in c#?
Regards
Martin Arvidsson
I often come across situations where i have a major code string for
accessing objects, variables and so on
In delphi, you could enter:
With mainObj.ThisControl.ThisProperty do
begin
x := dsdsa;
end;
instead of mainObj.ThisControl.ThisProperty.x := dsdsa;
It it possbile to do this in c#?
Regards
Martin Arvidsson