Syntactic sugar for properties for example in C#:
private int x;
public int X{
get { return x; }
set { x = value; }
}
or simply
public int X{ get; set; }
I am missing verbatim strings in java... @"C:\My Documents\" instead of "C:\\My Documents\\"
Do you agree Java needs more "sugar"? Any one knows is there is sugar coming in next Java versions?