TsadriuUtilities 1.5.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package TsadriuUtilities --version 1.5.2
NuGet\Install-Package TsadriuUtilities -Version 1.5.2
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="TsadriuUtilities" Version="1.5.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TsadriuUtilities --version 1.5.2
#r "nuget: TsadriuUtilities, 1.5.2"
#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 TsadriuUtilities as a Cake Addin
#addin nuget:?package=TsadriuUtilities&version=1.5.2

// Install TsadriuUtilities as a Cake Tool
#tool nuget:?package=TsadriuUtilities&version=1.5.2

TsadriuUtilities

A small package with utilities to save a little bit of time in coding.

TsadriuUtilities is a library that helps on dealing with

> Features <

ArrayHelper:

  • ToString<T>(T[], string separator):
    • Converts an Array into a single line of string. If the separator is not passed, it will separate by a space. Examples: ArrayToString(new int[] { 1, 3, 5 }) → "1 3 5", ArrayToString(new string[] { "5", "2" }, "|") → "5|2".
  • GenerateRandom<T>(T[] array, int min, int max):
    • Fills up the array with random numbers between min (default: 0, inclusive) and max (default: 100, inclusive).

BooolHelper:

  • ToBool(string value, SearchType searchType, string[] trueValue, string[] falseValue):
    • Tries to parse the value into a bool. If the conversion was successfull, it will return value as true or false depending on where it was found (trueValues, falseValues). If value is not found in any of those, it'll launch an ArgumentOutOfRangeException.

CharHelper:

  • ToChar(string value, int index):
    • Converts the value into a char. If the length of value is higher than 1, it will return the first character of value or, if index is passed, the character of the desired index.

DateTimeHelper:

  • ToDateTime(string dateAsString, string dateFormat, CultureInfo cultureInfo):
  • ToDateTime(string dateAsString, string[] dateFormats, CultureInfo cultureInfo):
    • Tries to convert a date from a string to a type of DateTime.
  • GetLastDayOfMonth(DateTime date):
    • Parses the date to return with the last day of the month.
  • SetDay(DateTime date, int day):
    • Sets the day in the date. In case the day is higher than the month's max days, it will be clamped.
  • SetMonth(DateTime date, int month):
    • Sets the month in the date. In case the month is higher than the year's maximum months, it will be clamped.
  • SetYear(DateTime date, int year):
    • Sets the year in the date.
  • RemoveDays(DateTime date, int days):
    • Removes a specified number of days from date.
  • RemoveMonths(DateTime date, int months):
    • Removes a specified number of months from date.
  • RemoveYears(DateTime date, int years):
    • Removes a specified number of years from date.

DictionaryHelper:

  • ToDictionary<TKey, TValue>(List<string> list, string separator, bool invertKeyWithValue):
    • Iterates through each element of the list and splits it by separator, assigning TKey to everything that is before the separator and TValue to everything that is after the separator.

DirectoryHelper:

  • Exist(string path, bool createFolder):
    • Checks if a path exists. If createFolder is true, it will create the path if it doesn't exist.
  • NotExist(string path, bool createFolder):
    • Checks if a path does not exist. If createFolder is true, it will create the path if it doesn't exist.

FileHelper:

  • GetFileExtention(string fileName):
    • Returns the extention of a fileName. If the fileName multiple extentions (Example: filename.txt.zip), it will return the last extention.
  • Exist(string fullFileName, bool createFile):
    • Checks if fullFileName exists. If createFile is true, it will create the fullFileName if it doesn't exist (Keep in mind that the path of the fullFileName must exist for createFile to work).
  • NotExist(string fullFileName, bool createFile):
    • Checks if fullFileName does not exist. If createFile is true, it will create the fullFileName if it doesn't exist (Keep in mind that the path of the fullFileName must exist for createFile to work).

ListHelper:

  • AddRange<T>(List<T> list, T[] array, int startIndex, int endIndex):
    • Adds the array into the list. If statIndex is specified, it will add the contents of the array only from startIndex (included) until the end of the array or until it reaches endIndex (included) if it is specified.
  • AddRange<T>(List<T> list, List<T> listToAdd, int index):
    • Adds the listToAdd into the list. If index is specified, it will add the contents of the listToAdd only from index (included) until the end of the list.
  • ToList<T>(T[] array):
    • Transforms an array into a List<T>.
  • OrderByAscending(List<T> list):
    • Orders a list in ascending order.
  • OrderByDescending<T>(List<T> list):
    • Orders a list in descending order.
  • ToString<T>(List<T> list, string separator, int startIndex, int count)
    • Converts an list into a single line of string. If separator is not passed, it will separate by a space. Examples: ListToString(new int[] { 1, 3, 5 }) → "1 3 5", ListToString(new string[] { "5", "2" }, "|") → "5|2".
  • HasAny<T>(List<T> list)
    • Iterates through the list, checking that it has at least 1 non null element.
  • GetValueLike(List<string> list, string value, StringComparison stringComparison)
    • Iterates through the list, returning the first value found that contains value.
  • RemoveFromElements(List<string> list, params string[] valuesToRemove)
    • Returns a list where all occasions of valuesToRemove have been removed from the elements of the list.
  • ReplaceFromElements(List<string> list, string oldValue, string newValue)
    • Returns a list where all occasions of oldValue have been replaced by newValue from the elements of the list.

MultiHelper:

  • ClampValue<T>(T currentValue, T minValue, T maxValue):
    • Clamps currentValue based on its' parameters. Returns maxValue if currentValue is higher than it and returns minValue if it is lower than it.
  • AreNotNull<T>(params T[] objects):
    • Checks if all objects are not null. If all of objects are not null, returns true. Otherwise returns false.

NumberHelper:

  • ToDecimal(string value):
    • Converts value into a decimal. If the conversion fails, returns a 0.0M.
  • ToDouble(string value):
    • Converts value into a double. If the conversion fails, returns a 0.0d.
  • ToInt(string value):
    • Converts value into a int. If the conversion fails, returns a 0.
  • Max<T>(T[] sequence):
    • Returns the highest number present in the sequence.
  • Min<T>(T[] sequence):
    • Returns the lowest number present in the sequence.
  • Between<T>(T value, T min, T max, bool included):
    • Checks if the value is between min and max. Setting included to true will also include min and max in the verification.

StringHelper:

  • GetBetween(string text, string start, string end, bool startEndIncluded):
    • Searches through the text, returning the first instance found between start and end. Use startEndIncluded if you want to include start and end in the returning string.
  • GetMultipleBetween(string text, string startTag, string endTag, bool tagsIncluded):
    • Searches through the text, returning multiple instances found between start and end. Use startEndIncluded if you want to include start and end in the returning List of string.
  • AndContains(string text, StringComparison stringComparison, string[] values):
    • Checks a string if it has all instances of values. If that's the case, then it returns true, otherwise it returns false.
  • OrContains(string text, StringComparison stringComparison, string[] values):
    • Checks a string if it has at least one instance of values. If that's the case, then it returns true, otherwise it returns false.
  • IsEmpty(string value):
    • Checks if the value is null, string.Empty or a white space ("", " ", "\n", "\r", ...)
  • IsNotEmpty(string value):
    • Check if the value contains any kind of character.
  • AreEmpty(string[] values):
    • Checks if all instances of values are null, string.Empty or a white space ("", " ", "\n", "\r", ...), returning true if all of them are empty.
  • AreNotEmpty(string[] values):
    • Checks if all instances of values contain any kind of character, returning true if all of them are not empty.
  • LetterUpperCase(string value, int index):
    • Changes a letter from value to be upper-case. If index is not passed, it will change the first letter of value.
  • LetterLowerCase(string value, int index):
    • Changes a letter from value to be lower-case. If index is not passed, it will change the first letter of value.
  • Remove(string value, params string[] valuesToRemove):
    • Returns a string where all instances of valuesToRemove have been removed from the value.
  • CharCount(string value, string valueToCount)
    • Returns the count of valueToCount present in the value.
  • RemoveTags(string value, string[] tags)
    • Returns a string where all instances of tags are removed from value (Example: Passing 'b' will remove all '<b>', '</b>' and <b/> xml tags).

TTable:

  • AddColumn(params string[] columnName):
  • AddColumn(params TTable[] columnName):
    • Adds a new TTableColumn in the TTable.
  • RenameColumn(string currentColumnName, string newColumnname):
    • Renames a column (if it exists).
  • GetColumn(params TTable[] columnName):
    • Returns an instance of TTableColumn if it is present in TTable.ColumnList. If it is not present, returns a null.
  • GetColumns(int index):
    • Returns all TTableColumn present in TTable.ColumnList, or, if index is passed, returns the TTableColumn of the desired index.
  • MoveColumnIndex(TTableColumn tableColumn, int newIndex):
  • MoveColumnIndex(string columnName, int newIndex)
    • Moves a tableColumn's index to newIndex.
  • RemoveColumn(params TTableColumn[] tableColumn):
  • RemoveColumn(params string[] columnName)
    • Removes a tableColumn from TTable.ColumnList (Method will use TTableColumn.ColumnName to determine which TTableColumn to remove from TTable.ColumnList.
  • AddData(string columnName, params object[] values):
  • AddData(TTableColumn tableColumn, params object[] values):
    • Adds values into the TTableColumn as object.
  • ExistsData(string columnName, object value):
  • ExistsData(TTableColumn tableColumn, object value):
    • Checks through the TTableColumn for value. Returns true if value is found, otherwise false.
  • GetData(string columnName):
    • If the columnName exists, returns all the data present in the TTableColumn.
  • RemoveData(string columnName, params object[] valuesToRemove):
  • RemoveData(TTableColumn tableColumn, params object[] valuesToRemove):
    • Removes all instances of valuesToRemove.
  • TableToCsv(bool addHeader, string separator):
    • Transform the TTable into a parseable .csv file.
  • CsvToTable(string fullFileName, string separator):
    • Transform a .csv file into a TTable.

TTableColumn:

  • string ColumnName { get; set; }:
    • Gets or sets the name of the column.
  • List<object> ColumnData { get; set; }:
    • Gets or sets the data in the column.
  • AddData(params object[] values):
    • Adds the values in the ColumnData as object.
  • ExistData(object value):
    • Checks through the ColumnData for value. Returns true if value is found, otherwise false.
  • RemoveData(params object[] values):
    • Removes all instances of values.
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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 470 6/14/2023
1.13.0 130 6/12/2023
1.12.6 297 3/27/2023
1.12.5 191 3/27/2023
1.12.4 302 3/14/2023
1.12.3 853 2/9/2023
1.12.2 243 2/9/2023
1.12.1 278 1/27/2023
1.12.0 915 1/20/2023
1.11.0 334 1/12/2023
1.10.0 1,504 10/13/2022
1.9.0 446 9/28/2022
1.8.1 459 9/12/2022
1.8.0 399 9/12/2022
1.7.0 401 9/9/2022
1.6.0 492 8/29/2022
1.5.2 869 6/30/2022
1.5.1 427 6/28/2022
1.4.0 421 6/22/2022
1.3.2 431 6/15/2022
1.3.1 457 6/15/2022
1.3.0 493 6/13/2022
1.2.0 443 6/2/2022
1.1.1 430 5/30/2022
1.1.0 432 5/25/2022
1.0.15 428 5/13/2022
1.0.14 422 5/4/2022
1.0.13 425 5/3/2022
1.0.12 434 4/28/2022
1.0.11 457 3/4/2022
1.0.8 448 2/23/2022
1.0.7 443 2/23/2022
1.0.6 489 2/18/2022
1.0.5 485 2/10/2022
1.0.4 496 1/31/2022
1.0.3 495 1/27/2022
1.0.2 548 11/9/2021
1.0.1 537 11/9/2021

StringHelper:
- Fixed bug on method GetBetween that would allow it to go out of bounds.