xyExtensions 1.0.0

dotnet add package xyExtensions --version 1.0.0
                    
NuGet\Install-Package xyExtensions -Version 1.0.0
                    
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="xyExtensions" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="xyExtensions" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="xyExtensions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add xyExtensions --version 1.0.0
                    
#r "nuget: xyExtensions, 1.0.0"
                    
#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.
#:package xyExtensions@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=xyExtensions&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=xyExtensions&version=1.0.0
                    
Install as a Cake Tool

xyExtensions

Extracted component of xyToolz — source is maintained in the main xyToolz repository; this package exposes only this module standalone.

This provides some hyper useful methods for problems that where nonexistent before...

Extension methods for string, byte[], List<T>, and Dictionary<TKey,TValue>.

Install

dotnet add package xyExtensions

Contents

  • xyByteExtensions

    • ToUtf8(this byte[]) — decode bytes to a UTF-8 string.
    • ToBase(this byte[]) — encode bytes to Base64.
  • xyStringExtensions

    • Repeat(this string, ushort count) — repeat a string.
    • Reverse(this string) / ReverseUnicode(this string) — reverse characters (Unicode-safe variant included).
    • ToBytes(this string) — UTF-8 encode to bytes.
    • BaseToBytes(this string) — decode a Base64 string to bytes.
    • IsNullOrEmpty(this string), IsNullOrWhitespace(this string).
  • xyListExtensions

    • FillWithNumbers(this IList<int>, int limit) — fill with 0..limit.
    • AddEvenNumbers(this IList<int>, int limit) — append even numbers up to limit.
    • AddOddNumbers(this IList<int>, int limit) — append odd numbers up to limit.
  • xyDictionaryExtensions

    • GetOrAdd<TKey,TValue>(this Dictionary<TKey,TValue>, TKey, TValue) — single-lookup get-or-add via CollectionsMarshal.
    • TryUpdate<TKey,TValue>(this Dictionary<TKey,TValue>, TKey, TValue) — single-lookup update via CollectionsMarshal.

Example

string base64 = "hello".ToBytes().ToBase();
string doubled = "ab".Repeat(3);           // "ababab"
bool empty = someString.IsNullOrWhitespace();

var dict = new Dictionary<string, int>();
int value = dict.GetOrAdd("key", 42);

Dependencies

  • xyLogger (exception logging via xyLog.ExLog)

Target Framework

.NET 8.0

License

GPL-3.0-or-later

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on xyExtensions:

Package Downloads
xySecurity

Package Description

xyFilesystem

Package Description

xySerialization

Package Description

xyMaths

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 83 7/29/2026