From 2b1383e20e3f9143a1f4684eb1cb1cadc6aee2f2 Mon Sep 17 00:00:00 2001 From: Ottorino Bruni Date: Sat, 25 May 2024 17:35:26 +0200 Subject: [PATCH] Update README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index d766c51..7925ecd 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ Key Features - Wide Range of Conversions: Transform text into 19 different cases including UpperCase, LowerCase, TitleCase, CamelCase, PascalCase, Base64 encoding/decoding, and more. - Text Analysis: Easily count characters, words, letters, and sentences within your text. - Easy Integration: Simple and intuitive API that integrates seamlessly with your .NET applications. +- List Available Conversions: Easily retrieve all supported text cases programmatically. Available Conversions - UpperCase: Converts text to uppercase. @@ -137,6 +138,18 @@ TextCase.GetParagraphsCount("You talking to me?"); ``` +**GetAllCases** +The GetAllCases method has been introduced to allow users to retrieve a complete list of all available text case conversions. +```cscharp +var allCases = TextCase.GetAllCases(); + +foreach (var textCase in allCases) +{ + Console.WriteLine(textCase); +} + +``` + ## Get it on NuGet: ```cscharp