show/hide this revision's text 3 added 115 characters in body

Thanks you to everybody for your answers and feedback. I was surprised to get so many of them. Looking at them and using some of the ideas, I came up with this solution, which works best for me:

public static class Extensions {

    public static T Next<T>(this T src) where T : struct
    {
        if (!typeof(T).IsEnum) throw new ArgumentException(String.Format("Argumnent {0} is Not an Enum",typeof(T).FullName));

        T[] Arr = (T[])Enum.GetValues(src.GetType());
        int j = Array.IndexOf<T>(Arr,src)+1;
        return (Arr.Length==j)?Arr[0]:Arr[j];            
    }
}

The beaty of this approach, that it is simple and universal to use. Implemented as generic extension method, you can call it on any enum this way:

eRat e=eRat.B;

return e.next<eRat>;
eRat.B.Next();

Notice, I am using generalized extension method, thus I don't need to specify type upon call, just .Next().

Thanks again.

show/hide this revision's text 2 deleted 10 characters in body

Thanks you everybody for your answers. I was surprised to get so many of them. Looking at them and using some of the ideas, I came up with this solution, which works best for me:

    public static class Extensions
{

    public static T Next<T>(this T src) where T : struct
    {
        if (!typeof(T).IsEnum) throw new ArgumentException(String.Format("Argumnent {0} is Not an Enum",typeof(T).FullName));

        T[] Arr = (T[])Enum.GetValues(src.GetType());
        int j=Array.FindIndex(Arr, a j = > a.Equals(src))+1;
        Array.IndexOf<T>(Arr,src)+1;
        return (Arr.Length==j)?Arr[0]:Arr[j];            
    }
}

The beaty of this approach, that it is simple and universal to use. Implemented as generic extension method, you can call it on any enum this way:

eRat e=eRat.B;
return e.next<eRat>;

Thanks again.

show/hide this revision's text 1

Thanks you everybody for your answers. I was surprised to get so many of them. Looking at them and using some of the ideas, I came up with this solution, which works best for me:

    public static class Extensions
{

    public static T Next<T>(this T src) where T : struct
    {
        if (!typeof(T).IsEnum) throw new ArgumentException(String.Format("Argumnent {0} is Not an Enum",typeof(T).FullName));

        T[] Arr = (T[])Enum.GetValues(src.GetType());
        int j=Array.FindIndex(Arr, a => a.Equals(src))+1;
        return (Arr.Length==j)?Arr[0]:Arr[j];            
    }
}

The beaty of this approach, that it is simple and universal to use. Implemented as generic extension method, you can call it on any enum this way:

eRat e=eRat.B;
return e.next<eRat>;

Thanks again.