Whats new?
Added a new function which combines a list of string into a single one where each value gets its own line.
Example
var result = Core.CombineString("Value1", "Value2", "Value3");
Console.WriteLine(result);
The output looks like this:
Value1
Value2
Value3