0
我保持收到錯誤消息:結構system.Int32沒有類型參數
結構system.Int32沒有類型參數
在低於我接口方法。有誰知道做錯了什麼?
public class StatementRptParamId {
public Int32 ReportParameterId { get; set; }
}
public interface IStatementRptParamId {
Int32<StatementRptParamId> GetStatementRptParameter(string connectionString, string customerNumber);
}
錯誤發生在這條線:Int32<StatementRptParamId>...
你想在方法返回什麼? – helb