本文介绍了如何在C#方法中使用引用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

valid = ValidStageTransition(currentStageId, stageTransId, endReasonId,out preverify,out _list, out currentCSE,out ste)



我希望该方法基于ID来执行某些操作吗?它已经编写了代码.现在,我添加了两个变量_list和bool preverify.因为我想将内容添加到列表中.但它抱怨像

错误1 ValidStageTransition(int,int,int,bool,out System.Collections.Generic.Dictionary< string,string>,CaseStageEntity,Apption.CMS.LLBL.CHRC.EntityClasses.StageTransitionEntity)的最佳重载方法匹配''有一些无效的参数

错误2错误2不应使用关键字"out"传递参数"4".



I want that method to do some thing based on the id right?. Its already written code. Now I added the two variables _list and bool preverify. Because i want to add things to the list right. but it complains like

Error1The best overloaded method match for ValidStageTransition(int, int, int, bool, out System.Collections.Generic.Dictionary<string,string>, out CaseStageEntity, out Apption.CMS.LLBL.CHRC.EntityClasses.StageTransitionEntity)'' has some invalid arguments

error 2 Error2Argument ''4'' should not be passed with the ''out'' keyword

推荐答案

valid = ValidStageTransition(currentStageId, stageTransId, endReasonId,out preverify,out _list, out currentCSE,out ste)



您会写:



You''d write:

valid = ValidStageTransition(currentStageId, stageTransId, endReasonId, preverify, out _list, out currentCSE, out ste);



这篇关于如何在C#方法中使用引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 06:44