相当于pydoc的C#

时间:2011-11-30 12:33:18

标签: c# documentation pydoc

我的工作地点没有Visual Studio,我正在使用Notepad ++进行开发。我知道MSDN,但我想从命令行浏览文档,就像在Python中一样。

在Python中,您可以浏览模块或函数的文档,或者像这样:

$ pydoc raw_input

给出

Help on built-in function raw_input in module __builtin__:

raw_input(...)
    raw_input([prompt]) -> string

    Read a string from standard input.  The trailing newline is stripped.
    If the user hits EOF (Unix: Ctl-D, Windows: Ctl-Z+Return), raise EOFError.
    On Unix, GNU readline is used if enabled.  The prompt string, if given,
    is printed without a trailing newline before reading.

我想知道C#是否有类似的东西,我可以做以下事情:

$ doc ReadLine

我在Console.ReadLine方法上得到了一些帮助。

有办法做到这一点吗?

1 个答案:

答案 0 :(得分:1)

MSDN内容没有命令行/控制台帮助查看器。

你能得到的最接近的(我知道的)是Package This项目,它将下载MSDN内容并从中创建一个CHM。