Idea of the project: if someone wants to order a project development, here you can send an application.
using System;
namespace ProjectRequestTest.Core
{
public static class EnumHelper<T> where T : struct
{
public static T Parse(string value)
{
return (T)Enum.Parse(typeof(T), value);
}
}
}