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