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