Skip to content

Releases: InvaderZim85/ZimLabs.CoreLib

Release v2.3.0

16 Mar 21:50
Compare
Choose a tag to compare

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

Release v2.2.0

12 Feb 10:24
Compare
Choose a tag to compare

Whats new?

  • Added filter functions
    • Core.MatchFilter(string value, FilterEntry filter)
    • Extensions.ToFilterType(this string value, string wildcard = "*")
    • Extensions.ToFilterEntry(this string value, string wildcard = "*")
    • Extensions.ToFilterList(this IEnumerable<string> values, string wildcard = "*")

Release v2.1.0

14 Oct 18:20
Compare
Choose a tag to compare

Whats new?

Added three new DateTime extensions:

  1. SetStartOfDay(): sets the time to the first possible value (00:00:00)
  2. SetEndOfDay(): sets the time to the last possible value (23:59:59)
  3. SetTime(int hour, int minute, int second): sets the time to a specific value

Release v2.0.1

11 Jul 18:22
Compare
Choose a tag to compare

Whats new?

  • Added extension (GetAttribute()) to extract an attribute of an Enum or an object

Release v2.0.0

07 Jul 20:06
Compare
Choose a tag to compare

Initial release