Releases: InvaderZim85/ZimLabs.CoreLib
Releases · InvaderZim85/ZimLabs.CoreLib
Release v2.3.0
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
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
Whats new?
Added three new DateTime
extensions:
SetStartOfDay()
: sets the time to the first possible value (00:00:00)SetEndOfDay()
: sets the time to the last possible value (23:59:59)SetTime(int hour, int minute, int second)
: sets the time to a specific value
Release v2.0.1
Whats new?
- Added extension (
GetAttribute()
) to extract an attribute of anEnum
or anobject
Release v2.0.0
Initial release