测试一下代码高亮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了测试一下代码高亮相关的知识,希望对你有一定的参考价值。
要开始放代码了
1 public class BlankController : Controller 2 { 3 /// <summary> 4 /// 测试注释 5 /// </summary> 6 /// <returns></returns> 7 public ViewResult NotFoundIndex() 8 { 9 return View(); 10 } 11 12 public ViewResult EasyuiTest() 13 { 14 return View(); 15 } 16 17 public PartialViewResult EasyuiPanelPage() 18 { 19 return PartialView(); 20 } 21 22 public ViewResult EasyuiIndex() 23 { 24 return View(); 25 } 26 }
继续测试
public class BlankController : Controller { /// <summary> /// 测试注释 /// </summary> /// <returns></returns> public ViewResult NotFoundIndex() { return View(); } public ViewResult EasyuiTest() { return View(); } public PartialViewResult EasyuiPanelPage() { return PartialView(); } public ViewResult EasyuiIndex() { return View(); } }
以上是关于测试一下代码高亮的主要内容,如果未能解决你的问题,请参考以下文章