if(string.IsNullOrEmpty(pessoa.Nome))
{
ModelState.AddModelError("Nome", "O campo nome é obrigatório");
}
How do I put quotation marks inside the message?
Eg: The "name" field is required.
if(string.IsNullOrEmpty(pessoa.Nome))
{
ModelState.AddModelError("Nome", "O campo nome é obrigatório");
}
How do I put quotation marks inside the message?
Eg: The "name" field is required.
You can do it in two ways:
Using backslash ():
if(string.IsNullOrEmpty(pessoa.Nome))
{
ModelState.AddModelError("Nome", "O campo \"nome\" é obrigatório");
}
Or by using at sign (@) with duplicate double quotation marks:
if(string.IsNullOrEmpty(pessoa.Nome))
{
ModelState.AddModelError("Nome", @"O campo ""nome"" é obrigatório");
}