AuxiliaryLibraries 1.0.16

There is a newer version of this package available.
See the version list below for details.
dotnet add package AuxiliaryLibraries --version 1.0.16
NuGet\Install-Package AuxiliaryLibraries -Version 1.0.16
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AuxiliaryLibraries" Version="1.0.16" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AuxiliaryLibraries --version 1.0.16
#r "nuget: AuxiliaryLibraries, 1.0.16"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AuxiliaryLibraries as a Cake Addin
#addin nuget:?package=AuxiliaryLibraries&version=1.0.16

// Install AuxiliaryLibraries as a Cake Tool
#tool nuget:?package=AuxiliaryLibraries&version=1.0.16

AuxiliaryCalendar:

var persian_today = DateTime.Now.ToPrettyDate(); //امروز var persian_yesterday = DateTime.Now.AddDays(-1).ToPrettyDate(); //دیروز var persian_tomorrow = DateTime.Now.AddDays(1).ToPrettyDate(); //فردا var persian_date = DateTime.Now.AddDays(-10).ToPrettyDate(); //پنجشنبه دوازدهم مهر ماه 1397

var todat = DateTime.Now.ToPrettyDate(toPersian: false); //Today var yesterday = DateTime.Now.AddDays(-1).ToPrettyDate(toPersian: false); //Yesterday var tomorrow = DateTime.Now.AddDays(-1).ToPrettyDate(toPersian: false); //Tomorrow var date = DateTime.Now.AddDays(-10).ToPrettyDate(toPersian: false); //Thursday Fourth of October 2018

var persian_todayTime = DateTime.Now.ToPrettyDateTime(); //امروز ساعت 14:20 var persian_yesterdayTime = DateTime.Now.AddDays(-1).ToPrettyDateTime(); //دیروز ساعت 14:20 var persian_dateTime = DateTime.Now.AddDays(-10).ToPrettyDateTime(); //پنجشنبه دوازدهم مهر ماه 1397 ساعت 14:20

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.0 228 4/13/2023
1.2.9 378 12/26/2021
1.2.8 278 12/26/2021
1.2.7 256 12/25/2021
1.2.6 506 9/4/2021
1.2.5 451 7/26/2021
1.2.4 393 7/26/2021
1.2.3 741 3/6/2021
1.2.2 398 3/1/2021
1.2.1 425 2/28/2021
1.2.0 454 2/17/2021
1.1.9 389 2/17/2021
1.1.8 368 2/16/2021
1.1.7 379 2/15/2021
1.1.6 395 2/1/2021
1.1.5 398 1/31/2021
1.1.4 425 1/13/2021
1.1.3 916 6/29/2020
1.1.2 481 6/29/2020
1.1.1 534 4/22/2020
1.1.0 738 4/10/2019
1.0.19 785 1/13/2019
1.0.18 643 4/10/2019
1.0.17 841 10/14/2018
1.0.16 840 10/14/2018
1.0.15 808 10/13/2018
1.0.14 1,049 5/8/2018
1.0.13 1,153 11/22/2017
1.0.12 1,134 11/22/2017
1.0.11 1,183 11/22/2017
1.0.10 1,088 11/22/2017
1.0.9 1,006 11/1/2017
1.0.8 1,094 4/12/2017
1.0.7 1,082 2/7/2017
1.0.6 1,183 2/7/2017
1.0.5 1,080 12/20/2016
1.0.4 1,213 12/7/2016
1.0.3 1,126 12/6/2016
1.0.2 1,124 12/6/2016
1.0.1 1,148 12/6/2016
1.0.0 1,591 12/6/2016

Fix bug of ToPrettyDay function and add ToPrettyDayOfWeek and ToPrettyDateTime functions in AuxiliaryCalendar. Rename some unclear function names, and extend them in AuxiliaryStringExtensions.