本文介绍了可选参数必须出现在c#中所有必需参数之后的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

方法1

public List<IndentItems> GetIndentsByStatus(string projectAddress, string jobAddress, string currentStatus,string ddlevent)
{
    List<IndentItems> indentItems =null;
    indentItems = GetIndentFilledInfo(filterdReports, false,null ,ddlevent);
    return indentItems;
}

方法2

public List<IndentItems> GetIndentFilledInfo(List<SurveyFeedback> surveyFeedbacks, bool hasupdate, string indentType = null,string ddlevent)
{
}

从Method1中,我正在调用第二个方法,在基于EventID的method2中,我将获取数据.但是它显示了编译器错误消息:

From Method1 I'm calling the second method and in method2 based on EventID I will get data. But it was showing Compiler Error Message:

推荐答案

您需要将可选参数移至参数列表的末尾:

You need to move your optional parameters to the end of the parameter list:

从MSDN:

public List<IndentItems> GetIndentFilledInfo(
        List<SurveyFeedback> surveyFeedbacks,
        bool hasupdate,
        string ddlevent,
        string indentType = null)

更多信息此处

这篇关于可选参数必须出现在c#中所有必需参数之后的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 17:13