我有一个一定长度的程序,有一个类和许多方法。所有这些都必须包含在一个巨大的类中,该类包含除了 using 语句之外的整个文件。那个巨大的包装类的必要性似乎毫无意义,这只是在以后制作具有多个文件的程序时才使用吗?
using System;
using System.IO;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Linq;
public class CollectKeywordsFromLogs // why do I need this ( when it is the only class [as i just added the test class for the question])
{
//a class
//constructor
//methods
//methods
public static void Main() // and why would i need to explicitly declare this public? it works either way, and a private main would be useless no?
{}
}
这是我的完整文件。我编译 csc file.cs 然后 file.exe。
哦,对了,区分大小写。谢谢。但仍然 - >为什么我在不使用测试类时需要包装类?