我开始将我的代码整理到单独的.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”方法
我在“应用程序”->“启动”对象中查看了应用程序属性,但没有任何选择。我如何通知应用程序从具有InitializeComponent()的.cs文件开始;命令?
- 到目前为止,我一直没有解决方案。
- 每个.cs文件的属性均设置为“编译”。
- 我的解决方案资源管理器中没有看到App.xaml文件,但是我看到了app.config文件。
我仍然很新,这是我第一次尝试使用c#代码进行组织的方法。