Flynk.Common.Utils 6.1.3

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Flynk.Common.Utils --version 6.1.3
                    
NuGet\Install-Package Flynk.Common.Utils -Version 6.1.3
                    
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="Flynk.Common.Utils" Version="6.1.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Flynk.Common.Utils" Version="6.1.3" />
                    
Directory.Packages.props
<PackageReference Include="Flynk.Common.Utils" />
                    
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 Flynk.Common.Utils --version 6.1.3
                    
#r "nuget: Flynk.Common.Utils, 6.1.3"
                    
#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 Flynk.Common.Utils@6.1.3
                    
#: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=Flynk.Common.Utils&version=6.1.3
                    
Install as a Cake Addin
#tool nuget:?package=Flynk.Common.Utils&version=6.1.3
                    
Install as a Cake Tool

Flynk.Common.Utils

NuGet Version License .NET Standard

A comprehensive utility library for .NET applications providing essential functionality for pagination, collections, validation, string manipulation, logging, and more.

๐Ÿ“ฆ Quick Installation

Install-Package Flynk.Common.Utils

Or via .NET CLI:

dotnet add package Flynk.Common.Utils

๐Ÿš€ Core Features

  • ๐Ÿ“„ Pagination - PagedList<T> with robust metadata tracking
  • ๐Ÿ”’ Thread-Safe Collections - Thread-safe list implementations with reader/writer locks
  • โœ… Validation - Comprehensive validators for common scenarios (GUID, URL, IP, etc.)
  • ๐Ÿ”ค String Utilities - Advanced manipulation, encoding, and formatting utilities
  • ๐Ÿ“ Logging - Flexible logging framework with multiple severity levels
  • ๐Ÿญ Factory Pattern - Generic factory with singleton support
  • ๐Ÿ“Š Data Structures - Observable collections, trees, and specialized structures
  • ๐ŸŒ Internationalization - Country and phone number utilities with region support

๐Ÿ’ก Quick Examples

Pagination

var pageSize = 20;
var pagedList = new PagedList<Product>(
    skip: 0,
    take: pageSize,
    items: allItems.Take(pageSize).ToList(),
    totalItems: allItems.Count
);

Console.WriteLine($"Page {pagedList.CurrentPage} of {pagedList.TotalPages}");

Validation

bool isValidGuid = Validator.Guids.IsGuid("550e8400-e29b-41d4-a716-446655440000");
bool isValidUrl = Validator.Urls.IsUrl("https://www.example.com");
bool isValidIp = Validator.IpAddresses.IsIpAddress("192.168.1.1");

String Utilities

string code = "ABC123DEF".ToSpacedCode("-"); // "ABC-123-DEF"
string encoded = Strings.ToCrockfordBase32(123456789);

Phone Numbers

bool isMobile = Phone.IsMobile("+1-555-0123", "US");
string digits = Phone.GetDigits("+1 (555) 123-4567"); // "15551234567"

๐Ÿ—๏ธ Architecture

Built on proven design patterns:

  • Factory Pattern - Generic factory with singleton support
  • Observer Pattern - Observable collections with event notifications
  • Thread Safety - Safe concurrent access throughout

๐Ÿ“š Documentation

Full API documentation available:

  • IntelliSense in Visual Studio / VS Code
  • XML documentation comments in source
  • NuGet Package Page

๐Ÿงช Quality Assurance

  • โœ… 140+ comprehensive unit tests
  • โœ… Full test coverage for core components
  • โœ… Concurrency testing for thread-safe collections
  • โœ… Cross-platform validation

๐Ÿ“„ License

Freeware - Distributed under the Flynk Pty Ltd Freeware License Agreement.

Key Terms:

  • โœ… Free to use
  • โœ… Free to distribute
  • โŒ No modifications or derivative works
  • โŒ No commercial redistribution

See the license file for complete terms.

๐Ÿ‘ฅ Support

Developed and maintained by Flynk Pty Ltd and the Flynk Developers team.


ยฉ Flynk Pty Ltd. All rights reserved.

Product 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.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (8)

Showing the top 5 NuGet packages that depend on Flynk.Common.Utils:

Package Downloads
Flynk.Common.Services

Flynk common services library providing REST API connection management, secure configuration, cryptography utilities, and shared DTOs for Flynk applications.

Flynk.Net.Services.Finance

Package Description

Flynk.Net.Services.Meta.Common

Package Description

Flynk.Apps.XamForms

Package Description

Flynk.Common.Services.Meta

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.2.1 44 11/11/2025
6.2.0 38 11/11/2025
6.1.3 87 11/10/2025
6.1.2 84 11/9/2025
6.1.1 158 10/24/2025
6.1.0 223 10/7/2025
6.0.19.21 1,116 8/6/2024
6.0.18.20 1,650 4/8/2024
6.0.17.19 7,354 8/1/2023
6.0.16.18 4,326 3/28/2023
6.0.15.17 2,060 3/28/2023
6.0.14.16 462 3/27/2023
6.0.13.15 3,767 2/1/2023
6.0.12.14 7,140 9/6/2022
6.0.11.13 599 8/22/2022
6.0.11.12 5,814 8/15/2022
6.0.10.11 5,880 4/1/2022
6.0.9.10 5,753 3/22/2022
6.0.8.9 6,127 3/14/2022
6.0.7.8 4,547 3/10/2022
6.0.6.7 5,550 1/19/2022
6.0.5.6 704 1/11/2022
6.0.4.5 5,116 1/10/2022
6.0.3.4 981 1/10/2022
6.0.2.3 472 1/5/2022
6.0.1.2 4,095 12/17/2021
6.0.0.1 3,343 12/15/2021
5.0.2.42 497 12/15/2021
5.0.1.41 16,768 10/22/2021
5.0.0.40 12,727 8/17/2021
2.1.0.39 1,568 8/17/2021
1.0.3.38 565 8/16/2021
1.0.3.37 544 8/16/2021
1.0.3.36 1,154 8/9/2021
1.0.3.35 2,132 2/2/2021
1.0.3.34 2,875 1/15/2021
1.0.3.33 3,303 11/23/2020
1.0.3.32 1,828 10/22/2020
1.0.3.31 1,422 10/2/2020
1.0.3.30 5,074 9/15/2020
1.0.3.29 7,395 8/25/2020
1.0.3.28 5,640 8/19/2020
1.0.3.27 643 8/18/2020
1.0.3.26 1,016 8/17/2020
1.0.3.25 2,170 8/12/2020
1.0.3.24 1,051 8/5/2020
1.0.3.23 6,609 7/17/2020
1.0.3.22 6,007 7/6/2020
1.0.3.21 15,865 4/17/2020
1.0.3.20 2,632 3/30/2020
1.0.3.19 916 3/25/2020
1.0.3.18 2,601 3/18/2020
1.0.3.17 1,933 2/26/2020
1.0.3.16 2,771 1/15/2020
1.0.3.15 9,163 1/10/2020
1.0.3.14 925 1/10/2020
1.0.3.13 1,111 12/26/2019
1.0.3.12 1,542 12/24/2019
1.0.3.11 2,996 10/28/2019
1.0.3.10 718 10/17/2019
1.0.3.9 2,979 8/12/2019
1.0.3.8 761 8/12/2019
1.0.3.7 1,655 7/10/2019
1.0.3.6 776 6/30/2019
1.0.3.5 788 6/30/2019
1.0.3.4 948 6/12/2019
1.0.3.1 15,818 5/7/2019