0

我对使用 ref 参数的函数有疑问。这个函数使用 linq 调用自己,如下所示:

public Champ(tabloidConfigColonne tcc,ref Dictionary<string, Jointure> jointures)
            {
              ...
             sousChamps = lc.ToDictionary(
                            o => o.nom,
                            o => new Champ(o, ref jointures));
             }

出现一个错误,说 ref 在匿名函数中不可用。

完整功能在这里

public Champ(tabloidConfigColonne tcc,ref Dictionary<string, Jointure> jointures)
        {
            nom = tcc.champ;
            description = tcc.titre;
            type = tcc.type;
            valeurDefaut = tcc.valeurParDefaut;
            modeEdition=new Template(tcc.editeur, tcc.editeurParam1, tcc.editeurParam2, tcc.editeurParam3);
            if (!string.IsNullOrEmpty(tcc.jointure))
            {
                jointure = jointures[tcc.jointure];
                nomTable = jointure.nomNouvelleTable;
            }

            visu=tcc.visu;
            Groupe=tcc.groupe;
            Id=tcc.nom;

            valideurs = tcc.valideurs;
            Obligatoire = tcc.obligatoire;

            if (tcc.colonnes.Count>0)
            {
                List<tabloidConfigColonne> lc = tcc.colonnes.GetColonnes(visibiliteTools.getFullVisibilite(),false);
                sousChamps = lc.ToDictionary(
                    o => o.nom,
                    o => new Champ(o, ref jointures));
            }
        }

谢谢你的帮助。

4

1 回答 1

1

我没有足够的代表发表评论,所以...

ref除非您将在函数内创建该对象的新实例,否则无需使用引用类型(对象)。

有关以下内容的更多说明,请参阅此 SO 帖子refC# ref is it like a pointer in C/C++ or a reference in C++?

于 2013-06-11T17:52:09.240 回答