Is it possible to make method chaining in a new line, like you can do in C#?
var foo = bar .MethodOne() .MethodTwo()
You should use '\' symbol. See sample:
a = 123 \ .ToString() \ .Length print a
whitespace is not significant inside () so the following is legal boo code:
a = (bar .Foo() .Bar())
Copyright © 2021 Jogjafile Inc.
You should use '\' symbol. See sample: