我可以在 Visual Studio 2010 中将任务列表项添加到 csHTML 中吗?

发布于 2024-11-10 08:54:24 字数 784 浏览 0 评论 0原文

背景

我对 Visual Studio 2010 相当陌生(曾使用过 Lua、LIMSBasic (Labware) 和其他一些没有使用像样 IDE 的项目,并且喜欢从评论中提取任务列表的想法我在代码中写了正确的内容,

我已经弄清楚如何使用注释来生成各种方式的“// TODO:”和其他任务列表,并在 stackoverflow 上找到了一些很好的列表,了解我可以做什么类型,但我无法建立 < em>(无论我如何滥用谷歌)即使可以将它们添加到csHTML文件没关系

我已经尝试过使用以下所有内容:

<!--// TODO: Work out how to add todo stuff to the tasklist!-->
// TODO: Work out how to add todo stuff to the tasklist!
<!--TODO: Work out how to add todo stuff to the tasklist!-->
<!-- TODO: Work out how to add todo stuff to the tasklist!-->
@// TODO: Work out how to add todo stuff to the tasklist!

...但什么也没有添加到任务列表

问题:

所以我的问题是:是否可以将“TODO:”和其他任务列表项添加到csHTML(使用razor的MVC 3),如果可以的话如何?

Background:

I am fairly new to Visual Studio 2010 (worked on Lua, LIMSBasic (Labware) and a few others that didn't use decent IDEs and love the idea of task lists being pulled out of the comments I write right in the code.

I have worked out how to use comments to generate all manner of "// TODO:" and other task list and found some good lists on stackoverflow for what type I can do but I can't establish (no mater how hard I abuse google) even if it's possible to add them to csHTML files nevermind how!

I have tried using all of the following:

<!--// TODO: Work out how to add todo stuff to the tasklist!-->
// TODO: Work out how to add todo stuff to the tasklist!
<!--TODO: Work out how to add todo stuff to the tasklist!-->
<!-- TODO: Work out how to add todo stuff to the tasklist!-->
@// TODO: Work out how to add todo stuff to the tasklist!

...but nothing was added to the Task List.

Question:

So my question(s) is/are: Is it possible to add "TODO:" and other task list item to csHTML (MVC 3 using razor) and if so HOW?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吐个泡泡 2024-11-17 08:54:24

以下应该有效。

@{
    //TODO: do stuff here
 }

@{/* TODO: do stuff here */}

因为它首先必须进入“代码”模式,然后您可以使用任务注释。

但显然以下内容不起作用(在我的视觉工作室中):

@*TODO: do stuff here *@

The following should work.

@{
    //TODO: do stuff here
 }

or

@{/* TODO: do stuff here */}

As it first has to go into "code" mode, and then you can use a task comment.

But apparently the following does not work (in my visual studio):

@*TODO: do stuff here *@
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文