Clarify utility class documentation

Updated the summary for the Utilities class to specify its methods for checking if strings are numbers or hexadecimal, formatting file sizes, and breaking lines of text. This makes the documentation more useful and informative for developers interacting with this class.

Signed-off-by: Ivandro Jao <Ivandrofly@gmail.com>
This commit is contained in:
Ivandro Jao 2024-09-17 20:41:21 +01:00
parent b668296110
commit 9f30bbea44

View File

@ -19,7 +19,10 @@ using Nikse.SubtitleEdit.Core.VobSub;
namespace Nikse.SubtitleEdit.Core.Common
{
/// <summary>
/// Provides various utility methods and properties for common operations
/// Provides utility methods and properties for common operations such as
/// checking if strings are numbers or hexadecimal, formatting file sizes,
/// and breaking lines of text.
/// </summary>
public static class Utilities
{
/// <summary>