https://github.com/balazs-kis/utils-lite
Small tools (object pool, retry logic, automatic mapping, etc.) for .NET Standard.
https://github.com/balazs-kis/utils-lite
dotnet dotnet-core generic-library helpers mapper objectpool objectpool-pattern retry toolkit tools
Last synced: 2 months ago
JSON representation
Small tools (object pool, retry logic, automatic mapping, etc.) for .NET Standard.
- Host: GitHub
- URL: https://github.com/balazs-kis/utils-lite
- Owner: balazs-kis
- License: mit
- Created: 2020-05-15T07:47:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-15T21:52:06.000Z (over 5 years ago)
- Last Synced: 2025-09-21T18:28:19.595Z (4 months ago)
- Topics: dotnet, dotnet-core, generic-library, helpers, mapper, objectpool, objectpool-pattern, retry, toolkit, tools
- Language: C#
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README

Small tools (object pool, retry logic, automatic mapping etc.) for .NET Standard.
[](https://travis-ci.com/balazs-kis/utils-lite)
[](https://coveralls.io/github/balazs-kis/utils-lite?branch=master)
[](https://www.nuget.org/packages/UtilsLite)
[](https://opensource.org/licenses/MIT)
[](https://github.com/balazs-kis/utils-lite/fork)
## Examples
### Date class
The Date class is a simle wrapper around the built-in DateTime struct, which indicates your intent to only use the date component:
```csharp
DateTime myDateTime = new DateTime(2016, 01, 28, 18, 20, 00);
Date justDate = Date.FromDateTime(myDateTime);
Console.WriteLine(justDate.ToString("yyyy-MM-dd"));
```