How to put quotation marks in a message

0
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.

    
asked by anonymous 25.03.2018 / 03:24

1 answer

1

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");
}
    
25.03.2018 / 06:14