I am using MVC and in my class I have member whose description has double quotes in it like below:
[Display(Name = "Biological "Parent"?")] public bool? IsParent { get; set; }
Is their any way we can use above method to display double quote in razor view or do I have to just declare label with what I want?
I tried replacing (“) with (" 😉 and it just display Biological " ;Parent" ; in label text when rendered
ignore my space between t & ; – stackoverflow renders it correctly