TsadriuUtilities 1.0.15
See the version list below for details.
dotnet add package TsadriuUtilities --version 1.0.15
NuGet\Install-Package TsadriuUtilities -Version 1.0.15
<PackageReference Include="TsadriuUtilities" Version="1.0.15" />
paket add TsadriuUtilities --version 1.0.15
#r "nuget: TsadriuUtilities, 1.0.15"
// Install TsadriuUtilities as a Cake Addin #addin nuget:?package=TsadriuUtilities&version=1.0.15 // Install TsadriuUtilities as a Cake Tool #tool nuget:?package=TsadriuUtilities&version=1.0.15
A small package of utilities to help dealing with strings, chars, lists and more to hopefully save a little bit of time in coding.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net5.0
- No dependencies.
-
net6.0
- No dependencies.
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.13.1 | 496 | 6/14/2023 | |
1.13.0 | 154 | 6/12/2023 | |
1.12.6 | 322 | 3/27/2023 | |
1.12.5 | 207 | 3/27/2023 | |
1.12.4 | 324 | 3/14/2023 | |
1.12.3 | 913 | 2/9/2023 | |
1.12.2 | 262 | 2/9/2023 | |
1.12.1 | 305 | 1/27/2023 | |
1.12.0 | 1,005 | 1/20/2023 | |
1.11.0 | 350 | 1/12/2023 | |
1.10.0 | 1,586 | 10/13/2022 | |
1.9.0 | 469 | 9/28/2022 | |
1.8.1 | 490 | 9/12/2022 | |
1.8.0 | 428 | 9/12/2022 | |
1.7.0 | 415 | 9/9/2022 | |
1.6.0 | 526 | 8/29/2022 | |
1.5.2 | 889 | 6/30/2022 | |
1.5.1 | 441 | 6/28/2022 | |
1.4.0 | 447 | 6/22/2022 | |
1.3.2 | 461 | 6/15/2022 | |
1.3.1 | 476 | 6/15/2022 | |
1.3.0 | 515 | 6/13/2022 | |
1.2.0 | 466 | 6/2/2022 | |
1.1.1 | 458 | 5/30/2022 | |
1.1.0 | 460 | 5/25/2022 | |
1.0.15 | 447 | 5/13/2022 | |
1.0.14 | 446 | 5/4/2022 | |
1.0.13 | 459 | 5/3/2022 | |
1.0.12 | 452 | 4/28/2022 | |
1.0.11 | 478 | 3/4/2022 | |
1.0.8 | 472 | 2/23/2022 | |
1.0.7 | 465 | 2/23/2022 | |
1.0.6 | 500 | 2/18/2022 | |
1.0.5 | 517 | 2/10/2022 | |
1.0.4 | 524 | 1/31/2022 | |
1.0.3 | 525 | 1/27/2022 | |
1.0.2 | 578 | 11/9/2021 | |
1.0.1 | 561 | 11/9/2021 |
ArrayHelper:
- Implemented method ToString()
CharHelper:
- Renamed method from 'StringToChar' to 'ToChar'. (Method 'StringToChar' is deprecated and will generate and error if it is being used).
- Method ToChar can be used as an extention and is accessible using the . (member access operator) on a string variable.
DateTime:
- Renamed method from 'StringToDate' to 'ToDateTime'. (Method 'StringToChar' is deprecated and will generate and error if it is being used).
- Method now also mentions that if the Culture is not passed, it will use the invariant culture.
- Method ToDateTime can be used as an extention and is accessible using the . (member access operator) on a DateTime variable.
- Implemented method GetLastDayOfMonth as an extention and is accessible using the . (member access operator) on a DateTime variable.
ListHelper:
- Method 'AddRange' has been changed to an extention and no longer requires the 'ref' keyword. (Method 'AddRange' with the 'ref' keyword is deprecated and will generate and error if it is being used).
- Method OrderByAscending can be used as an extention and is accessible using the . (member access operator) on a List{T}.
- Method OrderByDescending can be used as an extention and is accessible using the . (member access operator) on a List{T}.
- Implemented method ToString as an extention.
MultiHelper:
- Method ClampValue can be used as an extention and is accessible using the . (member access operator) on a Generic Type T.
- Method ArrayToString has been moved to ArrayHelper.ToString. (Method 'MultiHelper.ArrayToString is deprecated and will generate and error if it is being used).
- Method ListToString has been moved to ListHelper.ToString. (Method 'MultiHelper.ListToString is deprecated and will generate and error if it is being used).
NumberHelper:
- Renamed method from 'ExponentialToDecimal' to 'ToDecimal'. (Method 'ExponentialToDecimal' is deprecated and will generate and error if it is being used).
- Method ToDecimal can be used as an extention and is accessible using the . (member access operator) on a string variable.
- Renamed method from 'ExponentialToDouble' to 'ToDouble'. (Method 'ExponentialToDouble' is deprecated and will generate and error if it is being used).
- Method ToDouble can be used as an extention and is accessible using the . (member access operator) on a string variable.
StringHelper:
- Method GetTagValue can be used as an extention and is accessible using the . (member access operator) on a string.
- Method GetTagValues can be used as an extention and is accessible using the . (member access operator) on a string.
- Method IsEmpty can be used as an extention and is accessible using the . (member access operator) on a string.
- Method IsNotEmpty can be used as an extention and is accessible using the . (member access operator) on a string.
- Method LetterUpperCase can be used as an extention and is accessible using the . (member access operator) on a string.
- Method LetterLowerCase can be used as an extention and is accessible using the . (member access operator) on a string.
- Method Remove can be used as an extention and is accessible using the . (member access operator) on a string.
- Method CharCount can be used as an extention and is accessible using the . (member access operator) on a string.