$ more blah.cs
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
查看
file
命令的手册页:这是执行将此文件归类为 C++ 文件的第三个测试(语言测试) 。
file
C# 文件与 C++ 文件最匹配,因此
file
“猜测”.cs 文件是 C++ 文件。例子
检查
file
: