If we were using C++, this would be possible to implement:
$(World/Player).position.x = 100;
🙂
But since that seems odd, not as easy for others.
kind of like how my vector maths class can do:
Vec3 pos = 1, 2, 3;
But I'd never use it because it would mess with people, I just wanted to play with comma operators for fun. 🙂
C# does have a $, but it's meaning is string interpolation (inserting variables into positions in a string), so it's not available for redefining like in C++.