Skip to content

Instantly share code, notes, and snippets.

@vmandic
Created October 25, 2018 22:30
Show Gist options
  • Save vmandic/47418cfb2312c7169b1020fb68ae8b9d to your computer and use it in GitHub Desktop.
Save vmandic/47418cfb2312c7169b1020fb68ae8b9d to your computer and use it in GitHub Desktop.
meds-processor, p3, s8
namespace MedsProcessor.Common.Extensions
{
public static class EnumExtensions
{
public static T2 Parse<T1, T2>(string input) =>
(T2) System.Enum.Parse(typeof(T1), input);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment