C#对象不包含方法的定义
本文关键字:定义 方法 包含 对象 | 更新日期: 2023-09-27 18:20:44
我为这个愚蠢的问题道歉,但我是C#的新手,无法从与此错误相关的其他问题中找到帮助。
我创建了一个名为"Sender"的类,但在实例化对象时无法访问我的方法。当我尝试调用我的方法时,我得到了错误:"对象不包含sendMessage的定义。"我不知道哪里出了问题。请给我指正确的方向。
谢谢你的帮助!
这是我的发件人类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.Net.Sockets;
using System.Net.NetworkInformation;
namespace CS5200_HW1_GUI
{
public class Sender
{
private UdpClient myUdpClient;
private IPEndPoint localEP;
string ipAddress = "129.123.41.1";
string _port = "12001";
public void sendMessage()
{
}
// byte[] sendBuffer = Encoding.Unicode.GetBytes(command);
// int result = myUdpClient.Send(sendBuffer, sendBuffer.Length, localEP);
}
}
这就是我试图调用的方法:
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;
using System.Net;
using System.Net.Sockets;
using System.Net.NetworkInformation;
namespace CS5200_HW1_GUI
{
public partial class Form1 : Form
{
//private UdpClient myUdpClient;
IPEndPoint localEP = new IPEndPoint(IPAddress.Any, 0);
string command = string.Empty;
string newWord = String.Empty;
string guess = String.Empty;
string dashes = String.Empty;
string newAddress = string.Empty;
string newPort = string.Empty;
int score = 0;
int length = 0;
StringBuilder sb = new StringBuilder();
Random random = new Random();
Sender sender = new Sender();
private void button1_Click(object sender, EventArgs e)
{
command = "NewGame";
sender.sendMessage(command); //I get the error here
newWord = receiver.receiveMessage();
length = newWord.Length;
}
}
}
之所以会发生这种情况,是因为sender既是sender对象,也是单击处理程序的参数之一。
注意方法签名:
private void button1_Click(object sender, EventArgs e)
您指的是最近的发件人,其类型为object
。要解决此问题,您必须重命名其中一个或使用this
调用它。
示例:
this.sender.sendMessage()
您使用参数(command
)调用sender.sendMessage
Sender
对象上唯一一个名为sendMessage
的函数不接受任何参数,因此找不到匹配的方法。
您还使用了sender
变量,它是Click
方法中的一个变量(由于签名)。您应该使用其他名称。