Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# でできるように、新しい行でメソッド チェーンを作成することは可能ですか?
var foo = bar .MethodOne() .MethodTwo()
()内の空白は重要ではないため、以下は正当なbooコードです。
a = (bar .Foo() .Bar())
'\'記号を使用する必要があります。サンプルを参照してください:
a = 123 \ .ToString() \ .Length print a