我开始将每天的代码组织成独立的代码。Cs 文件,并且为了允许与 UI 一起工作的方法继续这样做,我将创建。Cs 代码使用相同的命名空间和公共分部类名,因此这些方法可以互操作。
我的头在四个文件中看起来是这样的,包括我的主核心文件,它调用:
public shell()
{
InitializeComponent();
}
使用 UI 的.cs 文件的头部区域(似乎正在导致这种新的冲突) :
using System;
using System.Windows.Forms;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.IO;
using System.Data.SqlServerCe;
using System.Diagnostics;
using System.Threading;
using System.Collections.Specialized;
using System.Net;
using System.Runtime.InteropServices;
using watin = WatiN.Core;
using WatiN.Core.Native.InternetExplorer;
using System.Web;
namespace WindowsFormsApplication1
{
public partial class shell : Form
{
现在,当我尝试调试/预览我的应用程序时(顺便说一下,这是 Visual Studio 2010 Express 中的一个 Windows 应用程序) ,我得到了这个错误消息:
不包含适合于入口点的静态“ main”方法
我在 Application-> Startup 对象中查看了应用程序属性,但它没有提供任何选项。如何通知应用程序从。Cs 文件,该文件包含我的 InitializeComponent () ; 命令?
我还是个新手,这是我第一次尝试用 c # 代码组织方法。