Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/280.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/.net/22.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何查找.net内置函数(如WriteLine()的源文件_C#_.net_.net Core - Fatal编程技术网

C# 如何查找.net内置函数(如WriteLine()的源文件

C# 如何查找.net内置函数(如WriteLine()的源文件,c#,.net,.net-core,C#,.net,.net Core,我试图查看一些内置c#函数的源代码,并尝试探索System.Console类等。。我通过将鼠标悬停在诸如ReadLine()之类的内置函数上,使用ctrl+click。在使用ctrl+单击时,它会将我重定向到System.Console元数据页面->在那里我可以找到只有一个声明可用 // Summary: // Writes the specified string value, followed by the current line terminator, to

我试图查看一些内置c#函数的源代码,并尝试探索System.Console类等。。我通过将鼠标悬停在诸如ReadLine()之类的内置函数上,使用ctrl+click。在使用ctrl+单击时,它会将我重定向到System.Console元数据页面->在那里我可以找到只有一个声明可用

    // Summary:
    //     Writes the specified string value, followed by the current line terminator, to
    //     the standard output stream.
public static void WriteLine(string value);

在上述情况下,函数仅声明为,但找不到任何定义。那么,有人能帮忙吗?有没有办法找到内置c#函数的源代码定义?

如果没有提供源代码,您可以使用谷歌:

查看