2013-06-22 74 views
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; } 

} 
+7

不,看起來對我好。是否有可能在某處有_another_ UserEventInput類? –

+1

要了解上述內容 - 右鍵單擊​​參數中的UserEventInput,然後單擊定義 – Sayse

+0

@BenjaminGruenbaum:您應該將其寫爲答案,以便它可以被接受。 – jmoreno

回答

1

感謝本傑明和Sayse,
我完全一笨。你是對的。
事實是,參數類代碼,它從另一個.cs文件中剪切並粘貼到此處。
但我沒有保存另一個.cs文件到磁盤.......所以在同一命名空間下有兩個同名的類.....我真是個傻瓜。

相關問題