Is possible to make Visual Cobol code shorter similar to something like that ?
string ReturnValue = Expression == true ? TruePart : FalsePart;
Using this the code would be shorter by 4 lines.
Is possible to make Visual Cobol code shorter similar to something like that ?
string ReturnValue = Expression == true ? TruePart : FalsePart;
Using this the code would be shorter by 4 lines.