The most interesting one I know is that you can return the result of an assignment by surrounding it with parens. I use this for collection properties all the time:
private IList<Foo> _foo;
public IList<Foo> ListOfFoo { get { return _foo ?? (_foo = new List<Foo>()); } }