Skip to content

Release v2.3.0

Latest
Compare
Choose a tag to compare
@InvaderZim85 InvaderZim85 released this 16 Mar 21:50

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