Method chaining on a new line in boo

211 Views Asked by At

Is it possible to make method chaining in a new line, like you can do in C#?

var foo = bar
  .MethodOne()
  .MethodTwo()
2

There are 2 best solutions below

0
On

You should use '\' symbol. See sample:

a = 123 \
       .ToString() \
       .Length
print a
0
On

whitespace is not significant inside () so the following is legal boo code:

a = (bar
     .Foo()
     .Bar())