I was wondering if was possible to update a value AFTER the line excutes, similar to:
int age = 10;
Console.WriteLine(age++);
outputs 10, but age
becomes 11 right after.
My goal is to have something like:
int offset = 1;
Console.WriteLine(offset += 4);
But having the aforementioned behavior.
Edit: I know that you can always do it in 2 lines, but I was wondering / hoping you could do it in one.