0
我是一個非常初學的程序員,我整天都很頭疼。參數類型不易訪問方法
下面的代碼有錯誤「參數類型比方法不易接近」在線: 「公共靜態INT NewUserEvent(UserEventInput輸入)」
public partial class GameWebService : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
[WebMethod]
public static int NewUserEvent(UserEventInput input)
{
return input.eventid;
}
}
public class UserEventInput
{
public string memberid { get; set; }
public int eventid { get; set; }
public int topicid { get; set; }
public int levelid { get; set; }
}
不,看起來對我好。是否有可能在某處有_another_ UserEventInput類? –
要了解上述內容 - 右鍵單擊參數中的UserEventInput,然後單擊定義 – Sayse
@BenjaminGruenbaum:您應該將其寫爲答案,以便它可以被接受。 – jmoreno