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 方法上得到了一些帮助。
有没有办法做到这一点?