1
I created an Enum:
 public enum EnumTipoBoleto
    {
        VazioErro=0,
        ConfigInicial = 1,
        Mensalidade = 2,
        Outros =3,
        DifMensal =4
    }
Now in some places I have the number and want to convert to Enum
var variavel = 2;
var valorEnum = EnumTipoBoleto[variavel]; //Como faço?
'EnumTipoBoleto' is a type, which is not valid in the given context
uhahuahua was just that.. Aff that I falter my.. rs
– Dorathoto