Heleonix.Extensions
3.0.0
See the version list below for details.
dotnet add package Heleonix.Extensions --version 3.0.0
NuGet\Install-Package Heleonix.Extensions -Version 3.0.0
<PackageReference Include="Heleonix.Extensions" Version="3.0.0" />
paket add Heleonix.Extensions --version 3.0.0
#r "nuget: Heleonix.Extensions, 3.0.0"
// Install Heleonix.Extensions as a Cake Addin #addin nuget:?package=Heleonix.Extensions&version=3.0.0 // Install Heleonix.Extensions as a Cake Tool #tool nuget:?package=Heleonix.Extensions&version=3.0.0
Heleonix.Extensions
Provides predicative and other useful extensions for objects, strings, enumerables etc.
Install
https://www.nuget.org/packages/Heleonix.Extensions
These extensions do not throw exceptions, so they can be used without try/catch blocks or extra if
statements.
All of the extensions are straightforward, so descriptions provided by intellisense is pretty enough.
Heleonix.Extensions.ObjectExtensions
Methods
public static bool IsNull(this object instance)
public static bool IsZero(this object instance)
public static bool IsOne(this object instance)
public static bool IsNegative(this object instance)
public static bool IsPositive(this object instance)
public static bool IsEqualTo(this object instance, object other)
public static bool IsAs(this object instance, Type type)
Determines whether this instance is subclass of or exactly the specified type.
public static bool IsTypeOf(this object instance, Type type)
Determines whether a type of this instance exactly equals the specified type.
Heleonix.Extensions.EnumerableExtensions
Methods
public static bool IsEmpty<T>(this IEnumerable<T> instance)
public static bool IsNullOrEmpty<T>(this IEnumerable<T> instance)
Heleonix.Extensions.ComparableExtensions
Methods
public static bool IsLessThan<T>(this IComparable<T> instance, T value)
public static bool IsLessThanOrEqualTo<T>(this IComparable<T> instance, T value)
public static bool IsGreaterThan<T>(this IComparable<T> instance, T value)
public static bool IsGreaterThanOrEqualTo<T>(this IComparable<T> instance, T value)
public static bool IsInRange<T>(this IComparable<T> instance, T min, T max)
Determines whether this instance is in range (inclusive) of the provided values.
public static bool IsBetween<T>(this IComparable<T> instance, T min, T max)
Determines whether this instance is between (exclusive) the provided values.
Heleonix.Extensions.StringExtensions
Methods
public static string FormatWith(this string format, params object[] args)
Formats the specified format string with the specified arguments.
Example
var str = "{0} plus {1} equals {2}".FormatWith(1, 2, 3); // "1 plus 2 equals 3"
public static string FormatWith(this string format, IFormatProvider formatProvider, params object[] args)
Formats the specified format string with the specified arguments using a specified format provider.
public static bool IsNullOrEmptyOrWhiteSpace(this string instance)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.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.
Explicit support of netstandard2.0 only.