2つのlinq式を1つに結合する方法はありますか?私。 1つのLINQ式はDistCountとNormCountの両方を2つの別個のint変数に返します。1つのLINQ式の中の個数と個体数
DistCount = (from string row in myList[i]
where row.Length > 0
select row).Distinct().Count();
NormCount = (from string row in myList[i]
where row.Length > 0
select row).Count();
'VAR最終=新しい{DISTCOUNT = 1、NormCount = 2};' –