using System;
public class Program
{
public static void Main()
var foo = new Foo();
foo /* Spaces, comments, etc... */ .Bar = "Does it work?";
Console.WriteLine(foo // Lots of white-space here
. // And here
Bar);
}
public class Foo
public string Bar { get; set; }