我有一个简单的窗口应用程序,我正在启动,我有另一个文件,我想带入新项目。如何将它们组合在一起作为一个文件?
新项目
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}
其他
using System;
using System.Text;
using System.IO;
using System.Net;
namespace CaptchaClient
{
public static class SampleUse
{
public static void SampleSolve()
{
}
}
public class CaptchaSolver
{
}
public enum ResponseState
{
}
}
答案 0 :(得分:3)
此屏幕截图显示了如何执行该过程
答案 1 :(得分:0)
在Solution Explorer中右键单击您的项目,然后单击Add Existing Item
。然后浏览到其他类文件。导入后,您可能希望将其名称空间更改为您在项目中使用的名称空间。