個別の値を抽出したい IEnumerable 変数があります。リストの行のすべてのエントリが同じ値であることはわかっています。その値を取得する必要があるだけです。
このメソッドは IEnumerable を返します。
IEnumerable の行は次のように定義されています。
コードのサンプル:
IadditionalInterestData = AdditionalInterestData.GetAdditionalInterests(MasterPkgID, Requestor);
// Using linq.
var quotes = from ai in IadditionalInterestData
select Distinct(ai.QuoteCovId);
// Iterate thru to get the 1 value.
foreach (int QuoteCovId in quotes)
{
quoteID = QuoteCovId;
}