pydoc的c#等价物
本文关键字:等价物 pydoc | 更新日期: 2023-09-27 18:16:07
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
我在控制台上得到了一些帮助。ReadLine方法。有办法做到这一点吗?
MSDN内容没有命令行/控制台帮助查看器
最接近你可以得到(我知道),是包这个项目,将下载MSDN内容,并使其CHM