c#对象实例化的对象如何在另一个事件中调用 40

publicvoidForm1_Load(objectsender,EventArgse){intport=8089;stringhost="192.168.1.116"... public void Form1_Load(object sender, EventArgs e)
{
int port = 8089;
string host = "192.168.1.116";
IPAddress ip = IPAddress.Parse(host);
IPEndPoint ipe = new IPEndPoint(ip, port);
Socket c = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
c.Connect(ipe);

}

private void button1_Click(object sender, EventArgs e)
{

string sendStr = "hello!This is a socket test";
byte[] bs = Encoding.ASCII.GetBytes(sendStr);
c.Send(bs, bs.Length, 0);

}
在一个窗体下这个对象c想被多个事件中使用 但是提示
错误 1 当前上下文中不存在名称“c”
请高手给想个什么办法解决!
展开
 我来答
lrh3321
2015-03-18 · TA获得超过2183个赞
知道大有可为答主
回答量:2296
采纳率:75%
帮助的人:2114万
展开全部
Socket c =null;
public void Form1_Load(object sender, EventArgs e)
        {
            int port = 8089;
            string host = "192.168.1.116";
            IPAddress ip = IPAddress.Parse(host);
            IPEndPoint ipe = new IPEndPoint(ip, port);
            c = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
            c.Connect(ipe);
        }
        private void button1_Click(object sender, EventArgs e)
        {
            string sendStr = "hello!This is a socket test";
            byte[] bs = Encoding.ASCII.GetBytes(sendStr);
            c.Send(bs, bs.Length, 0);
        }
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式