我正在mvc3上建立一个网站(并且喜欢新的语法!)。我正在使用常量创建电子邮件功能。但是,我对使用公共属性/常量感到茫然。我知道使用WebForms我们可以在代码后面添加一个公共属性。但我正在努力做到这一点。
public const string ImportantNoticeForEmployers =
@"<span style=""font-size:12px;line-height:1.5"">" +
@"<b>Important Notice for Employers<b><br><br>" +
@"The Information on xxxxxxxxxxx<br><br>" +
@"</span>";
private const string EmployerDisclaimer =
@"<span style=""font- size:13px;font-family:arial,sans serif;line-height: 1.5"">" +
@"<b>::Disclaimer::</b><br><br> " +
@"By your positive acts of registering on xxxxxx.Login details are required to delete the account)" +
@"</span";
我必须在每个公共方法中调用此私有方法。任何人都可以帮助我吗?提前谢谢。