2017-08-25 50 views
-3

使用下面的代碼,我得到「無重載方法」getStarDropdown'取0參數「錯誤。爲什麼我會得到「沒有重載方法需要0參數」的錯誤?

我該如何解決這個問題?因爲我是新手!

請幫助謝謝:)

頭等艙:

public DataTable getStarDropdown(int starID) 
    { 
     try 
     { 
      DataTable dtStar = null; 
      CommonDAL obj = new CommonDAL(); 
      DataSet dsAll = obj.getStarEntity(starID); 

      if (dsAll != null) 
       dtStar = dsAll.Tables[1]; 
      return dtStar; 
     } 
     catch (Exception ex) 
     { 
      string msg = ex.Message; 

      ExceptionLogger.WriteToLog(hostWebUrl, "CommonDAL", "getAllDropDown()", ex.Message, ex.StackTrace, ExceptionLogger.LOGTYPE.ERROR.ToString()); 
      return null; 
     } 

    } 

二等:

public static List<Dictionary<string, object>> GetStarData() 
    { 
     CommonBAL obj = new CommonBAL(); 
     DataTable dt = new DataTable(); 
     dt = obj.getStarDropdown(); 

     System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer(); 
     List<Dictionary<string, object>> rows = new List<Dictionary<string, object>>(); 
     Dictionary<string, object> row; 
     foreach (DataRow dr in dt.Rows) 
     { 
      row = new Dictionary<string, object>(); 
      foreach (DataColumn col in dt.Columns) 
      { 
       row.Add(col.ColumnName, dr[col]); 
      } 
      rows.Add(row); 
     } 
     return rows; 

    } 
+0

'obj.getStarDropdown();'你需要根據其簽名'的DataTable getStarDropdown(INT starID)'這就是編譯器告訴你一個starID傳遞給該方法。它找不到任何不帶參數的方法的重載,因爲只有一個參數帶有一個int參數。 – Fildor

回答

1

在第二類中,將值設置爲dt時需要整數。

所以

dt = obj.getStarDropdown(PUT AN INTEGER HERE) 
+0

如果你不知道整數在這裏是什麼鏈接。 https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/int – howells699

1

你的功能預計int類型

/通整數值到參數功能,

dt = obj.getStarDropdown(1); 
+0

某些整數如?對不起,我是新的,所以我需要幫助@Saetetharan –

+0

你的getStarDropdown需要一個starId,通過startID – Sajeetharan

相關問題