Maurycy Markowski
Maurycy Markowski
There is no straightforward translation to built-in functions for these, but we could do something like this: ```cs string.Join("", Enumerable.Repeat("foo", 10)) -> REPLICATE('foo', 10) ``` ```cs string.Join('', "foo".Reverse()) -> REVERSE('foo')...
Currently (some) exception messages there are hard-coded
Regular primitive collections (`Ints` in the example) get discovered by convention. However when the collection is backed by a private field, they are not. One needs to explicitly mark them...