From 67c07b88336bcda6b95243265e35b9bbb8034fd6 Mon Sep 17 00:00:00 2001 From: Jack Kanarish Date: Tue, 24 Dec 2019 14:30:17 -0500 Subject: [PATCH] feat: make get values public --- ICD.Common.Utils/EnumUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICD.Common.Utils/EnumUtils.cs b/ICD.Common.Utils/EnumUtils.cs index 03005f4..07cdee3 100644 --- a/ICD.Common.Utils/EnumUtils.cs +++ b/ICD.Common.Utils/EnumUtils.cs @@ -148,7 +148,7 @@ namespace ICD.Common.Utils /// Gets the values from an enumeration without performing any caching. This is slow because of reflection. /// /// - private static IEnumerable GetValues(Type type) + public static IEnumerable GetValues(Type type) { if (type == null) throw new ArgumentNullException("type");