I did this in the constructor of my class and now it gives error saying that there is no overhead for the ToString method with 1 argument. It was working, I cleaned the solution and it all went down.
Mapper.Initialize(cfg => {
//string userName = null;
cfg.CreateMap<LiberacaoDTO, Liberacao>()
.ForMember(d => d.Juros,
opt => opt.MapFrom(src => Juros.ToString("C3")
));
});