Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor AddDependencyKeys to be a generic method
Updated AddDependencyKeys method signature from `private static void AddDependencyKeys(object value, HashSet<string> dependencyKeys)` to `private static void AddDependencyKeys<T>(T value, HashSet<string> dependencyKeys)`. This change enhances flexibility and type safety by allowing the method to accept any type specified at the time of the method call.
- Loading branch information