-
-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
enhancementNew feature or requestNew feature or request
Description
The StringToEnum method in Utilities.cs provides a generic way to convert a string to an enum. This is a useful utility function, but its location in a general Utilities class can be refactored into a more specific utility class focused on type conversion or string manipulation within the core layer.
Action:
- Create a new core-level utility class for type conversion or string utilities (e.g.,
TypeConverterUtils.csorStringUtils.cs). - Move the
StringToEnummethod to this new class. - Update any code that uses
StringToEnumto reference the new class. - Add or update tests for the string-to-enum conversion logic.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request