Whitespace around dots is fine

So apparently this works. Who knew?

dim d as new Dictionary
d   .   Value    ( 123 ) = "something"
MsgBox d .    _
  Value   ( 123 )

You might say, “but Kem, why would you ever write code like that?” In making a SQLBuilder, I want to be able to write code like the following, and it will work:

call SQLBuilder.Select( columns ). _
  From( table ). _
  Where( conditions ). _
  ToString

Your preference might be:

call SQLBuilder.Select( columns ) _
  .From( table ) _
  .Where( conditions ) _
  .ToString

Neat!

Me
Probably Joe, Mars and Aaron