# Oxygene: - now: ``` case aIndex of 0: begin exit 'NewName'; end; else begin exit nil; end; end; ``` - suggested: ``` case aIndex of 0: exit 'NewName'; else exit nil; end; ``` # C#: the same is generated correctly: ``` switch (aIndex) { case 0: return "NewName"; default: return null; } ```