2
Why error occurs? How to fix?
Model:
public class modelExemplo
{
public StringBuilder listNewsletter { get; set; }
}
Controller:
public ActionResult funcaodeteste()
{
modelExemplo obj = new modelExemplo();
obj.listNewsletter.AppendLine("teste1");
obj.listNewsletter.AppendLine("teste2");
}
Wonder, thank you so much for the answer, it was extremely clear and objective and the best, it worked rs.
– rock.ownar