I have an enum which is defined like this:
public enum eRat { A = 0, B=3, C=5, D=8 };
So given value eRat.B, I want to get the
eRat.B
var next = (eRat)((int)someRat + 3);